home *** CD-ROM | disk | FTP | other *** search
/ CD BIT 75 / CD BIT 75.iso / Software / mysql-4.0.22-win / data1.cab / Development / sql-bench / limits / mysql.cfg < prev    next >
Encoding:
Text File  |  2004-10-28  |  290.8 KB  |  7,300 lines

  1. #This file is automaticly generated by crash-me 1.61
  2.  
  3. NEG=yes                    # update of column= -column
  4.    ###< create table crash_q (a integer)
  5.    ###> OK
  6.    ###< insert into crash_q values(10)
  7.    ###> OK
  8.    ###< update crash_q set a=-a
  9.    ###> OK
  10.    ###< drop table crash_q 
  11.    ###> OK
  12.    ###
  13.    ###As far as all queries returned OK, result is YES
  14. Need_cast_for_null=no            # Need to cast NULL for arithmetic
  15.    ### Check if numeric_null (NULL) is 'NULL'
  16.    ### Check if numeric_null (NULL) is 'NULL'
  17.    ### Check if numeric_null (NULL) is 'NULL'
  18. alter_add_col=yes            # Alter table add column
  19.    ###< alter table crash_q add d integer
  20.    ###> OK
  21.    ###
  22.    ###As far as all queries returned OK, result is YES
  23. alter_add_constraint=yes        # Alter table add constraint
  24.    ###< alter table crash_q add constraint c2 check(a > b)
  25.    ###> OK
  26.    ###
  27.    ###As far as all queries returned OK, result is YES
  28. alter_add_foreign_key=no        # Alter table add foreign key
  29.    ###< alter table crash_q add constraint f1 foreign key(c1)
  30.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  31.    ###<  references crash_q1(c1)
  32.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'references crash_q1(c1)' at line 1
  33.    ###
  34.    ###As far as some queries didnt return OK, result is NO
  35. alter_add_multi_col=yes            # Alter table add many columns
  36.    ###< alter table crash_q add (f integer,g integer)
  37.    ###> OK
  38. alter_add_primary_key=with constraint    # Alter table add primary key
  39.    ###< alter table crash_q1 add constraint p1 primary key(c1)
  40.    ###> OK
  41. alter_add_unique=yes            # Alter table add unique
  42.    ###< alter table crash_q add constraint u1 unique(c1)
  43.    ###> OK
  44.    ###
  45.    ###As far as all queries returned OK, result is YES
  46. alter_alter_col=yes            # Alter table alter column default
  47.    ###< alter table crash_q alter b set default 10
  48.    ###> OK
  49.    ###
  50.    ###As far as all queries returned OK, result is YES
  51. alter_change_col=yes            # Alter table change column
  52.    ###< alter table crash_q change a e char(50)
  53.    ###> OK
  54.    ###
  55.    ###As far as all queries returned OK, result is YES
  56. alter_drop_col=yes            # Alter table drop column
  57.    ###< alter table crash_q drop column b
  58.    ###> OK
  59. alter_drop_constraint=no        # Alter table drop constraint
  60.    ###< alter table crash_q drop constraint c2
  61.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint c2' at line 1
  62.    ###
  63.    ###< alter table crash_q drop constraint c2 restrict
  64.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint c2 restrict' at line 1
  65. alter_drop_foreign_key=with drop foreign key    # Alter table drop foreign key
  66.    ###< alter table crash_q drop constraint f1
  67.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint f1' at line 1
  68.    ###
  69.    ###< alter table crash_q drop constraint f1 restrict
  70.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint f1 restrict' at line 1
  71.    ###
  72.    ###< alter table crash_q drop foreign key f1
  73.    ###> OK
  74. alter_drop_primary_key=drop primary key    # Alter table drop primary key
  75.    ###< alter table crash_q1 drop constraint p1 restrict
  76.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint p1 restrict' at line 1
  77.    ###
  78.    ###< alter table crash_q1 drop primary key
  79.    ###> OK
  80. alter_drop_unique=with drop key        # Alter table drop unique
  81.    ###< alter table crash_q drop constraint u1
  82.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint u1' at line 1
  83.    ###
  84.    ###< alter table crash_q drop constraint u1 restrict
  85.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'constraint u1 restrict' at line 1
  86.    ###
  87.    ###< alter table crash_q drop key c1
  88.    ###> OK
  89. alter_modify_col=yes            # Alter table modify column
  90.    ###< alter table crash_q modify c1 CHAR(20)
  91.    ###> OK
  92. alter_rename_table=yes            # Alter table rename table
  93.    ###< alter table crash_q rename to crash_q1
  94.    ###> OK
  95.    ###
  96.    ###As far as all queries returned OK, result is YES
  97. atomic_updates=no            # atomic updates
  98.    ###< create table crash_q (a integer not null,primary key (a)) 
  99.    ###> OK
  100.    ###< insert into crash_q values (2)
  101.    ###> OK
  102.    ###< insert into crash_q values (3)
  103.    ###> OK
  104.    ###< insert into crash_q values (1)
  105.    ###> OK
  106.    ###< update crash_q set a=a+1
  107.    ###> execute error:Duplicate entry '3' for key 1
  108.    ###< drop table crash_q 
  109.    ###> OK
  110.    ###
  111.    ###As far as some queries didnt return OK, result is NO
  112. automatic_rowid=_rowid            # Automatic row id
  113.    ###< create table crash_q (a int not null, primary key(a))
  114.    ###> OK
  115.    ###< insert into crash_q values (1)
  116.    ###> OK
  117.    ###< select _rowid from crash_q
  118.    ###> OK
  119.    ###< drop table crash_q 
  120.    ###> OK
  121. binary_numbers=no            # binary numbers (0b1001)
  122.    ###< select 0b1001 
  123.    ###> execute error:Unknown column '0b1001' in 'field list'
  124.    ###
  125.    ###As far as some queries didnt return OK, result is NO
  126. binary_strings=no            # binary strings (b'0110')
  127.    ###< select b'0110' 
  128.    ###> execute error:Unknown column 'b' in 'field list'
  129.    ###
  130.    ###As far as some queries didnt return OK, result is NO
  131. case_insensitive_strings=yes        # Case insensitive compare
  132.    ###
  133.    ###<select b from crash_me where b = 'A'
  134.    ###>a
  135. char_is_space_filled=no            # char are space filled
  136.    ###
  137.    ###<select concat(b,b) from crash_me where b = 'a         '
  138.    ###>aa
  139.    ###We expected 'a         a         ' but got 'aa' 
  140. column_alias=yes            # Column alias
  141.    ###< select a as ab from crash_me
  142.    ###> OK
  143.    ###
  144.    ###As far as all queries returned OK, result is YES
  145. columns_in_group_by=+64            # number of columns in group by
  146.    ###We are trying (example with N=5):
  147.    ###create table crash_q (q1 integer,q2 integer,q3 integer,q4 integer,q5 integer)
  148.    ###insert into crash_q values(1,1,1,1,1)
  149.    ###insert into crash_q values(1,1,1,1,1)
  150.    ###select q1,q2,q3,q4,q5 from crash_q group by q1,q2,q3,q4,q5
  151. columns_in_order_by=+64            # number of columns in order by
  152.    ###We are trying (example with N=5):
  153.    ###create table crash_q (q1 integer,q2 integer,q3 integer,q4 integer,q5 integer)
  154.    ###insert into crash_q values(1,1,1,1,1)
  155.    ###insert into crash_q values(1,1,1,1,1)
  156.    ###select * from crash_q order by q1,q2,q3,q4,q5
  157. comment_#=yes                # # as comment
  158.    ###< select * from crash_me # Testing of comments
  159.    ###> OK
  160.    ###
  161.    ###As far as all queries returned OK, result is YES
  162. comment_--=yes                # -- as comment (ANSI)
  163.    ###< select * from crash_me -- Testing of comments
  164.    ###> OK
  165.    ###
  166.    ###As far as all queries returned OK, result is YES
  167. comment_/**/=yes            # /* */ as comment
  168.    ###< select * from crash_me /* Testing of comments */
  169.    ###> OK
  170.    ###
  171.    ###As far as all queries returned OK, result is YES
  172. comment_//=no                # // as comment
  173.    ###< select * from crash_me // Testing of comments
  174.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '// Testing of comments' at line 1
  175.    ###
  176.    ###As far as some queries didnt return OK, result is NO
  177. compute=no                # Compute
  178.    ###< select a from crash_me order by a compute sum(a) by a
  179.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'compute sum(a) by a' at line 1
  180.    ###
  181.    ###As far as some queries didnt return OK, result is NO
  182. connections=101                # Simultaneous connections (installation default)
  183. constraint_check=syntax only        # Column constraints
  184.    ###< create table crash_q (a int check (a>0))
  185.    ###> OK
  186.    ###
  187.    ###< insert into crash_q values(0)
  188.    ###> OK
  189.    ###
  190.    ###< drop table crash_q 
  191.    ###> OK
  192.    ###< create table crash_q (a int check (a>0))
  193.    ###> OK
  194.    ###
  195.    ###< insert into crash_q values(0)
  196.    ###> OK
  197.    ###
  198.    ###< drop table crash_q 
  199.    ###> OK
  200.    ###< create table crash_q (a int check (a>0))
  201.    ###> OK
  202.    ###
  203.    ###< insert into crash_q values(0)
  204.    ###> OK
  205.    ###
  206.    ###< drop table crash_q 
  207.    ###> OK
  208. constraint_check_named=syntax only    # Named constraints
  209.    ###< create table crash_q (a int ,b int, constraint abc check (a>b))
  210.    ###> OK
  211.    ###
  212.    ###< insert into crash_q values(0,0)
  213.    ###> OK
  214.    ###
  215.    ###< drop table crash_q 
  216.    ###> OK
  217.    ###< create table crash_q (a int ,b int, constraint abc check (a>b))
  218.    ###> OK
  219.    ###
  220.    ###< insert into crash_q values(0,0)
  221.    ###> OK
  222.    ###
  223.    ###< drop table crash_q 
  224.    ###> OK
  225.    ###< create table crash_q (a int ,b int, constraint abc check (a>b))
  226.    ###> OK
  227.    ###
  228.    ###< insert into crash_q values(0,0)
  229.    ###> OK
  230.    ###
  231.    ###< drop table crash_q 
  232.    ###> OK
  233. constraint_check_table=syntax only    # Table constraints
  234.    ###< create table crash_q (a int ,b int, check (a>b))
  235.    ###> OK
  236.    ###
  237.    ###< insert into crash_q values(0,0)
  238.    ###> OK
  239.    ###
  240.    ###< drop table crash_q 
  241.    ###> OK
  242.    ###< create table crash_q (a int ,b int, check (a>b))
  243.    ###> OK
  244.    ###
  245.    ###< insert into crash_q values(0,0)
  246.    ###> OK
  247.    ###
  248.    ###< drop table crash_q 
  249.    ###> OK
  250.    ###< create table crash_q (a int ,b int, check (a>b))
  251.    ###> OK
  252.    ###
  253.    ###< insert into crash_q values(0,0)
  254.    ###> OK
  255.    ###
  256.    ###< drop table crash_q 
  257.    ###> OK
  258. constraint_null=yes            # NULL constraint (SyBase style)
  259.    ###< create table crash_q (a int null)
  260.    ###> OK
  261.    ###< drop table crash_q 
  262.    ###> OK
  263.    ###
  264.    ###As far as all queries returned OK, result is YES
  265. crash_me_safe=yes            # crash me safe
  266. crash_me_version=1.61            # crash me version
  267. create_default=yes            # default value for column
  268.    ###< create table crash_q (q integer default 10 not null)
  269.    ###> OK
  270.    ###< drop table crash_q 
  271.    ###> OK
  272.    ###
  273.    ###As far as all queries returned OK, result is YES
  274. create_default_func=no            # default value function for column
  275.    ###< create table crash_q (q integer not null,q1 integer default (1+1))
  276.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1+1))' at line 1
  277.    ###< drop table crash_q 
  278.    ###> execute error:Unknown table 'crash_q'
  279.    ###
  280.    ###As far as some queries didnt return OK, result is NO
  281. create_if_not_exists=yes        # create table if not exists
  282.    ###< create table crash_q (q integer)
  283.    ###> OK
  284.    ###< create table if not exists crash_q (q integer)
  285.    ###> OK
  286.    ###
  287.    ###As far as all queries returned OK, result is YES
  288. create_index=yes            # create index
  289.    ###< create index crash_q on crash_me (a)
  290.    ###> OK
  291. create_schema=no            # Create SCHEMA
  292.    ###< create schema crash_schema create table crash_q (a int) create table crash_q2(b int)
  293.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'schema crash_schema create table crash_q (a int) create table c
  294.    ###< drop schema crash_schema cascade
  295.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'schema crash_schema cascade' at line 1
  296.    ###
  297.    ###As far as some queries didnt return OK, result is NO
  298. create_table_select=yes            # create table from select
  299.    ###< create table crash_q SELECT * from crash_me
  300.    ###> OK
  301. cross_join=yes                # cross join (same as from a,b)
  302.    ###< select crash_me.a from crash_me cross join crash_me3
  303.    ###> OK
  304.    ###
  305.    ###As far as all queries returned OK, result is YES
  306. date_as_string=yes            # String functions on date columns
  307.    ###< create table crash_me2 (a date not null)
  308.    ###> OK
  309.    ###< insert into crash_me2 values ('1998-03-03')
  310.    ###> OK
  311.    ###
  312.    ###<select left(a,4) from crash_me2
  313.    ###>1998
  314.    ###
  315.    ###< drop table crash_me2 
  316.    ###> OK
  317. date_format_EUR=error            # Supports DD.MM.YYYY (EUR) format
  318.    ###< insert into crash_me_d(a) values ('16.08.1963')
  319.    ###> OK
  320.    ###
  321.    ###<select a from crash_me_d
  322.    ###>0000-00-00
  323.    ###We expected '1963-08-16' but got '0000-00-00' 
  324.    ###
  325.    ###< delete from crash_me_d
  326.    ###> OK
  327. date_format_EUR_with_date=error        # Supports DATE 'DD.MM.YYYY' (EUR) format
  328.    ###< insert into crash_me_d(a) values (DATE '16.08.1963')
  329.    ###> OK
  330.    ###
  331.    ###<select a from crash_me_d
  332.    ###>0000-00-00
  333.    ###We expected '1963-08-16' but got '0000-00-00' 
  334.    ###
  335.    ###< delete from crash_me_d
  336.    ###> OK
  337. date_format_ISO=yes            # Supports YYYY-MM-DD (ISO) format
  338.    ###< insert into crash_me_d(a)  values ('1963-08-16')
  339.    ###> OK
  340.    ###
  341.    ###<select a from crash_me_d
  342.    ###>1963-08-16
  343.    ###
  344.    ###< delete from crash_me_d
  345.    ###> OK
  346. date_format_ISO_with_date=yes        # Supports DATE 'YYYY-MM-DD' (ISO) format
  347.    ###< insert into crash_me_d(a) values (DATE '1963-08-16')
  348.    ###> OK
  349.    ###
  350.    ###<select a from crash_me_d
  351.    ###>1963-08-16
  352.    ###
  353.    ###< delete from crash_me_d
  354.    ###> OK
  355. date_format_USA=error            # Supports MM/DD/YYYY format
  356.    ###< insert into crash_me_d(a) values ('08/16/1963')
  357.    ###> OK
  358.    ###
  359.    ###<select a from crash_me_d
  360.    ###>0000-00-00
  361.    ###We expected '1963-08-16' but got '0000-00-00' 
  362.    ###
  363.    ###< delete from crash_me_d
  364.    ###> OK
  365. date_format_USA_with_date=error        # Supports DATE 'MM/DD/YYYY' format
  366.    ###< insert into crash_me_d(a) values (DATE '08/16/1963')
  367.    ###> OK
  368.    ###
  369.    ###<select a from crash_me_d
  370.    ###>0000-00-00
  371.    ###We expected '1963-08-16' but got '0000-00-00' 
  372.    ###
  373.    ###< delete from crash_me_d
  374.    ###> OK
  375. date_format_YYYYMMDD=yes        # Supports YYYYMMDD format
  376.    ###< insert into crash_me_d(a) values ('19630816')
  377.    ###> OK
  378.    ###
  379.    ###<select a from crash_me_d
  380.    ###>1963-08-16
  381.    ###
  382.    ###< delete from crash_me_d
  383.    ###> OK
  384. date_format_YYYYMMDD_with_date=yes    # Supports DATE 'YYYYMMDD' format
  385.    ###< insert into crash_me_d(a) values (DATE '19630816')
  386.    ###> OK
  387.    ###
  388.    ###<select a from crash_me_d
  389.    ###>1963-08-16
  390.    ###
  391.    ###< delete from crash_me_d
  392.    ###> OK
  393. date_format_inresult=iso        # Date format in result
  394.    ###< insert into crash_me_d values( sysdate() ) 
  395.    ###> OK
  396.    ###
  397.    ###< select a from crash_me_d
  398.    ###> 2003-08-27
  399.    ###< delete from crash_me_d
  400.    ###> OK
  401.    ###< insert into crash_me_d values( sysdate() ) 
  402.    ###> OK
  403.    ###
  404.    ###< select a from crash_me_d
  405.    ###> 2004-05-20
  406.    ###< delete from crash_me_d
  407.    ###> OK
  408.    ###< insert into crash_me_d values( sysdate() ) 
  409.    ###> OK
  410.    ###
  411.    ###< select a from crash_me_d
  412.    ###> 2004-05-20
  413.    ###< delete from crash_me_d
  414.    ###> OK
  415. date_infinity=error            # Supports 'infinity dates
  416.    ###< create table crash_me2 (a date not null)
  417.    ###> OK
  418.    ###< insert into crash_me2 values ('infinity')
  419.    ###> OK
  420.    ###
  421.    ###<select a from crash_me2
  422.    ###>0000-00-00
  423.    ###We expected 'infinity' but got '0000-00-00' 
  424.    ###
  425.    ###< drop table crash_me2 
  426.    ###> OK
  427. date_last=yes                # Supports 9999-12-31 dates
  428.    ###< create table crash_me2 (a date not null)
  429.    ###> OK
  430.    ###< insert into crash_me2 values ('9999-12-31')
  431.    ###> OK
  432.    ###
  433.    ###<select a from crash_me2
  434.    ###>9999-12-31
  435.    ###
  436.    ###< drop table crash_me2 
  437.    ###> OK
  438. date_one=yes                # Supports 0001-01-01 dates
  439.    ###< create table crash_me2 (a date not null)
  440.    ###> OK
  441.    ###< insert into crash_me2 values ('0001-01-01')
  442.    ###> OK
  443.    ###
  444.    ###<select a from crash_me2
  445.    ###>0001-01-01
  446.    ###
  447.    ###< drop table crash_me2 
  448.    ###> OK
  449. date_with_YY=yes            # Supports YY-MM-DD 2000 compilant dates
  450.    ###< create table crash_me2 (a date not null)
  451.    ###> OK
  452.    ###< insert into crash_me2 values ('98-03-03')
  453.    ###> OK
  454.    ###
  455.    ###<select a from crash_me2
  456.    ###>1998-03-03
  457.    ###
  458.    ###< drop table crash_me2 
  459.    ###> OK
  460.    ###
  461.    ###< create table crash_me2 (a date not null)
  462.    ###> OK
  463.    ###< insert into crash_me2 values ('10-03-03')
  464.    ###> OK
  465.    ###
  466.    ###<select a from crash_me2
  467.    ###>2010-03-03
  468.    ###
  469.    ###< drop table crash_me2 
  470.    ###> OK
  471. date_zero=yes                # Supports 0000-00-00 dates
  472.    ###< create table crash_me2 (a date not null)
  473.    ###> OK
  474.    ###< insert into crash_me2 values ('0000-00-00')
  475.    ###> OK
  476.    ###
  477.    ###<select a from crash_me2
  478.    ###>0000-00-00
  479.    ###
  480.    ###< drop table crash_me2 
  481.    ###> OK
  482. domains=no                # Domains (ANSI SQL)
  483.    ###< create domain crash_d as varchar(10) default 'Empty' check (value <> 'abcd')
  484.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'domain crash_d as varchar(10) default 'Empty' check (value <> '
  485.    ###< create table crash_q(a crash_d, b int)
  486.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'crash_d, b int)' at line 1
  487.    ###< insert into crash_q(a,b) values('xyz',10)
  488.    ###> execute error:Table 'test.crash_q' doesn't exist
  489.    ###< insert into crash_q(b) values(10)
  490.    ###> execute error:Table 'test.crash_q' doesn't exist
  491.    ###< drop table crash_q 
  492.    ###> execute error:Unknown table 'crash_q'
  493.    ###< drop domain crash_d
  494.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'domain crash_d' at line 1
  495.    ###
  496.    ###As far as some queries didnt return OK, result is NO
  497. dont_require_cast_to_float=yes        # No need to cast from integer to float
  498.    ###< select exp(1) 
  499.    ###> OK
  500.    ###
  501.    ###As far as all queries returned OK, result is YES
  502. double_quotes=yes            # Double '' as ' in strings
  503.    ###
  504.    ###<select 'Walker''s' 
  505.    ###>Walker's
  506. drop_if_exists=yes            # drop table if exists
  507.    ###< create table crash_q (q integer)
  508.    ###> OK
  509.    ###< drop table if exists crash_q 
  510.    ###> OK
  511.    ###
  512.    ###As far as all queries returned OK, result is YES
  513. drop_index=with 'ON'            # drop index
  514.    ###< drop index crash_q
  515.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
  516.    ###
  517.    ###< drop index crash_q from crash_me
  518.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'from crash_me' at line 1
  519.    ###
  520.    ###< drop index crash_q on crash_me
  521.    ###> OK
  522. drop_requires_cascade=no        # drop table require cascade/restrict
  523.    ###< create table crash_me (a integer not null)
  524.    ###> OK
  525.    ###< drop table crash_me
  526.    ###> OK
  527.    ###< create table crash_me (a integer not null)
  528.    ###> OK
  529.    ###< drop table crash_me
  530.    ###> OK
  531.    ###< create table crash_me (a integer not null)
  532.    ###> OK
  533.    ###< drop table crash_me
  534.    ###> OK
  535. drop_restrict=yes            # drop table with cascade/restrict
  536.    ###< create table crash_q (a int)
  537.    ###> OK
  538.    ###< drop table crash_q restrict
  539.    ###> OK
  540.    ###
  541.    ###As far as all queries returned OK, result is YES
  542. end_colon=yes                # allows end ';'
  543.    ###< select * from crash_me;
  544.    ###> OK
  545.    ###
  546.    ###As far as all queries returned OK, result is YES
  547. except=no                # except
  548.    ###< select * from crash_me except select * from crash_me3
  549.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me3' at line 1
  550.    ###
  551.    ###As far as some queries didnt return OK, result is NO
  552. except_all=no                # except all
  553.    ###< select * from crash_me except all select * from crash_me3
  554.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'all select * from crash_me3' at line 1
  555.    ###
  556.    ###As far as some queries didnt return OK, result is NO
  557. except_all_incompat=no            # except all (incompatible lists)
  558.    ###< select * from crash_me except all select * from crash_me2
  559.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'all select * from crash_me2' at line 1
  560.    ###
  561.    ###As far as some queries didnt return OK, result is NO
  562. except_incompat=no            # except (incompatible lists)
  563.    ###< select * from crash_me except select * from crash_me2
  564.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me2' at line 1
  565.    ###
  566.    ###As far as some queries didnt return OK, result is NO
  567. field_name_case=yes            # case independent field names
  568.    ###< create table crash_q (q integer)
  569.    ###> OK
  570.    ###< insert into crash_q(Q) values (1)
  571.    ###> OK
  572.    ###< drop table crash_q 
  573.    ###> OK
  574.    ###
  575.    ###As far as all queries returned OK, result is YES
  576. float_int_expr=yes            # mixing of integer and float in expression
  577.    ###< select 1+1.0 
  578.    ###> OK
  579.    ###
  580.    ###As far as all queries returned OK, result is YES
  581. foreign_key=syntax only            # foreign keys
  582.    ###< create table crash_me_qf (a integer not null,primary key (a)) 
  583.    ###> OK
  584.    ###
  585.    ###< create table crash_me_qf2 (a integer not null,foreign key (a) references crash_me_qf (a)) 
  586.    ###> OK
  587.    ###
  588.    ###< insert into crash_me_qf values (1)
  589.    ###> OK
  590.    ###
  591.    ###< insert into crash_me_qf2 values (2)
  592.    ###> OK
  593.    ###
  594.    ###< drop table crash_me_qf2 
  595.    ###> OK
  596.    ###
  597.    ###< drop table crash_me_qf 
  598.    ###> OK
  599.    ###< create table crash_me_qf (a integer not null,primary key (a)) 
  600.    ###> OK
  601.    ###
  602.    ###< create table crash_me_qf2 (a integer not null,foreign key (a) references crash_me_qf (a)) 
  603.    ###> OK
  604.    ###
  605.    ###< insert into crash_me_qf values (1)
  606.    ###> OK
  607.    ###
  608.    ###< insert into crash_me_qf2 values (2)
  609.    ###> OK
  610.    ###
  611.    ###< drop table crash_me_qf2 
  612.    ###> OK
  613.    ###
  614.    ###< drop table crash_me_qf 
  615.    ###> OK
  616.    ###< create table crash_me_qf (a integer not null,primary key (a)) 
  617.    ###> OK
  618.    ###
  619.    ###< create table crash_me_qf2 (a integer not null,foreign key (a) references crash_me_qf (a)) 
  620.    ###> OK
  621.    ###
  622.    ###< insert into crash_me_qf values (1)
  623.    ###> OK
  624.    ###
  625.    ###< insert into crash_me_qf2 values (2)
  626.    ###> OK
  627.    ###
  628.    ###< drop table crash_me_qf2 
  629.    ###> OK
  630.    ###
  631.    ###< drop table crash_me_qf 
  632.    ###> OK
  633. full_outer_join=no            # full outer join
  634.    ###< select crash_me.a from crash_me full join crash_me2 ON 
  635.    ###       crash_me.a=crash_me2.a
  636.    ###> execute error:Unknown table 'crash_me' in field list
  637.    ###
  638.    ###As far as some queries didnt return OK, result is NO
  639. func_extra_!=yes            # Function NOT as '!' in SELECT
  640.    ###
  641.    ###<select ! 1 
  642.    ###>0
  643. func_extra_%=yes            # Function MOD as %
  644.    ###
  645.    ###<select 10%7 
  646.    ###>3
  647. func_extra_&=yes            # Function & (bitwise and)
  648.    ###
  649.    ###<select 5 & 3 
  650.    ###>1
  651. func_extra_&&=yes            # Function AND as '&&'
  652.    ###
  653.    ###<select 1=1 && 2=2 
  654.    ###>1
  655. func_extra_<>=yes            # Function <> in SELECT
  656.    ###
  657.    ###<select 1<>1 
  658.    ###>0
  659. func_extra_==yes            # Function =
  660.    ###
  661.    ###<select (1=1) 
  662.    ###>1
  663. func_extra_add_months=no        # Function ADD_MONTHS
  664.    ###
  665.    ###<select add_months('1997-01-01',1) from crash_me_d
  666.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('1997-01-01',1) from crash_me_d' at line 1
  667. func_extra_adddate=no            # Function ADDDATE
  668.    ###
  669.    ###<select ADDDATE('2002-12-01',3) from crash_me_d
  670.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '3) from crash_me_d' at line 1
  671. func_extra_addtime=no            # Function ADDTIME
  672.    ###
  673.    ###<select ADDTIME('20:02:12','00:00:03') 
  674.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('20:02:12','00:00:03')' at line 1
  675. func_extra_alpha=no            # Function ALPHA
  676.    ###
  677.    ###<select alpha('AΓ',2) 
  678.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('AΓ',2)' at line 1
  679. func_extra_and_or=yes            # Function AND and OR in SELECT
  680.    ###
  681.    ###<select 1=1 AND 2=2 
  682.    ###>1
  683. func_extra_ascii_char=no        # Function ASCII_CHAR
  684.    ###
  685.    ###<select ASCII_CHAR(65) 
  686.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(65)' at line 1
  687. func_extra_ascii_code=no        # Function ASCII_CODE
  688.    ###
  689.    ###<select ASCII_CODE('A') 
  690.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('A')' at line 1
  691. func_extra_ascii_string=error        # Function ASCII in string cast
  692.    ###
  693.    ###<select ascii('a') 
  694.    ###>97
  695.    ###We expected 'a' but got '97' 
  696. func_extra_atn2=no            # Function ATN2
  697.    ###
  698.    ###<select atn2(1,0) 
  699.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1,0)' at line 1
  700. func_extra_auto_num2string=yes        # Function automatic num->string convert
  701.    ###
  702.    ###<select concat('a',2) 
  703.    ###>a2
  704. func_extra_auto_string2num=yes        # Function automatic string->num convert
  705.    ###
  706.    ###<select '1'+2 
  707.    ###>3
  708. func_extra_between=yes            # Function BETWEEN in SELECT
  709.    ###
  710.    ###<select 5 between 4 and 6 
  711.    ###>1
  712. func_extra_binary_shifts=yes        # Function << and >> (bitwise shifts)
  713.    ###
  714.    ###<select (1 << 4) >> 2 
  715.    ###>4
  716. func_extra_bit_count=yes        # Function BIT_COUNT
  717.    ###
  718.    ###<select bit_count(5) 
  719.    ###>2
  720. func_extra_ceil=yes            # Function CEIL
  721.    ###
  722.    ###<select ceil(-4.5) 
  723.    ###>-4
  724. func_extra_char_date=no            # Function CHAR (conversation date)
  725.    ###
  726.    ###<select CHAR(a,EUR) from crash_me_d
  727.    ###> execute failed:Unknown column 'EUR' in 'field list'
  728. func_extra_charindex=no            # Function CHARINDEX
  729.    ###
  730.    ###<select charindex('a','crash') 
  731.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('a','crash')' at line 1
  732. func_extra_chr=no            # Function CHR
  733.    ###
  734.    ###<select CHR(65) 
  735.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(65)' at line 1
  736. func_extra_chr_str=no            # Function CHR (any type to string)
  737.    ###
  738.    ###<select CHR(67) 
  739.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(67)' at line 1
  740. func_extra_concat_as_+=error        # Function concatenation with +
  741.    ###
  742.    ###<select 'abc' + 'def' 
  743.    ###>0
  744.    ###We expected 'abcdef' but got '0' 
  745. func_extra_concat_list=yes        # Function CONCAT(list)
  746.    ###
  747.    ###<select concat('a','b','c','d') 
  748.    ###>abcd
  749. func_extra_convert=no            # Function CONVERT
  750.    ###
  751.    ###<select convert(CHAR,5) 
  752.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '5)' at line 1
  753. func_extra_cosh=no            # Function COSH
  754.    ###
  755.    ###<select cosh(0) 
  756.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(0)' at line 1
  757. func_extra_date=no            # Function DATE
  758.    ###
  759.    ###<select date('1963-08-16') from crash_me_d
  760.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('1963-08-16') from crash_me_d' at line 1
  761. func_extra_date_format=yes        # Function DATE_FORMAT
  762.    ###
  763.    ###<select date_format('1997-01-02 03:04:05','M W D Y y m d h i s w') from crash_me_d
  764.    ###>M W D Y y m d h i s w
  765. func_extra_dateadd=no            # Function DATEADD
  766.    ###
  767.    ###<select dateadd(day,3,'1997-11-30') from crash_me_d
  768.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(day,3,'1997-11-30') from crash_me_d' at line 1
  769. func_extra_datediff=no            # Function DATEDIFF
  770.    ###
  771.    ###<select datediff(month,'Oct 21 1997','Nov 30 1997') from crash_me_d
  772.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(month,'Oct 21 1997','Nov 30 1997') from crash_me_d' at line 1
  773. func_extra_datediff2arg=no        # Function DATEDIFF (2 arg)
  774.    ###
  775.    ###<select DATEDIFF('2002-12-04','2002-12-01') from crash_me_d
  776.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('2002-12-04','2002-12-01') from crash_me_d' at line 1
  777. func_extra_datename=no            # Function DATENAME
  778.    ###
  779.    ###<select datename(month,'Nov 30 1997') from crash_me_d
  780.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(month,'Nov 30 1997') from crash_me_d' at line 1
  781. func_extra_datepart=no            # Function DATEPART
  782.    ###
  783.    ###<select datepart(month,'July 20 1997') from crash_me_d
  784.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(month,'July 20 1997') from crash_me_d' at line 1
  785. func_extra_day=no            # Function DAY
  786.    ###
  787.    ###<select DAY('2002-12-01') from crash_me_d
  788.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('2002-12-01') from crash_me_d' at line 1
  789. func_extra_decode=no            # Function DECODE
  790.    ###
  791.    ###<select DECODE('S-103','T72',1,'S-103',2,'Leopard',3) 
  792.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '1,'S-103',2,'Leopard',3)' at line 1
  793. func_extra_ebcdic_string=no        # Function EBCDIC in string cast
  794.    ###
  795.    ###<select ebcdic('a') 
  796.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('a')' at line 1
  797. func_extra_elt=yes            # Function ELT
  798.    ###
  799.    ###<select elt(2,'ONE','TWO','THREE') 
  800.    ###>TWO
  801. func_extra_encrypt=yes            # Function ENCRYPT
  802.    ###
  803.    ###<select encrypt('hello') 
  804.    ###>tHrzZO8Aq1FG6
  805. func_extra_expand2arg=no        # Function EXPAND
  806.    ###
  807.    ###<select expand('abcd',6) 
  808.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abcd',6)' at line 1
  809. func_extra_field=yes            # Function FIELD
  810.    ###
  811.    ###<select field('IBM','NCA','ICL','SUN','IBM','DIGITAL') 
  812.    ###>4
  813. func_extra_fixed=no            # Function FIXED
  814.    ###
  815.    ###<select fixed(222.6666,10,2) 
  816.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(222.6666,10,2)' at line 1
  817. func_extra_float=no            # Function FLOAT
  818.    ###
  819.    ###<select float(6666.66,4) 
  820.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'float(6666.66,4)' at line 1
  821. func_extra_format=yes            # Function FORMAT
  822.    ###
  823.    ###<select format(1234.5555,2) 
  824.    ###>1,234.56
  825. func_extra_from_days=yes        # Function FROM_DAYS
  826.    ###
  827.    ###<select from_days(729024) from crash_me_d
  828.    ###>1996-01-01
  829. func_extra_from_unixtime=yes        # Function FROM_UNIXTIME
  830.    ###
  831.    ###<select from_unixtime(0) from crash_me_d
  832.    ###>1970-01-01 02:00:00
  833. func_extra_getdate=no            # Function GETDATE
  834.    ###
  835.    ###<select getdate() 
  836.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '()' at line 1
  837. func_extra_greatest=yes            # Function GREATEST
  838.    ###
  839.    ###<select greatest('HARRY','HARRIOT','HAROLD') 
  840.    ###>HARRY
  841. func_extra_hex=yes            # Function HEX
  842.    ###
  843.    ###<select HEX('A') 
  844.    ###>41
  845. func_extra_if=yes            # Function IF
  846.    ###
  847.    ###<select if(5,6,7) 
  848.    ###>6
  849. func_extra_in_num=yes            # Function IN on numbers in SELECT
  850.    ###
  851.    ###<select 2 in (3,2,5,9,5,1) 
  852.    ###>1
  853. func_extra_in_str=yes            # Function IN on strings in SELECT
  854.    ###
  855.    ###<select 'monty' in ('david','monty','allan') 
  856.    ###>1
  857. func_extra_index=no            # Function INDEX
  858.    ###
  859.    ###<select index('abcdefg','cd',1,1) 
  860.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'index('abcdefg','cd',1,1)' at line 1
  861. func_extra_initcap=no            # Function INITCAP
  862.    ###
  863.    ###<select initcap('the soap') 
  864.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('the soap')' at line 1
  865. func_extra_instr=yes            # Function LOCATE as INSTR
  866.    ###
  867.    ###<select instr('hello','ll') 
  868.    ###>3
  869. func_extra_instr_oracle=no        # Function INSTR (Oracle syntax)
  870.    ###
  871.    ###<select INSTR('CORPORATE FLOOR','OR',3,2) 
  872.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '3,2)' at line 1
  873. func_extra_instrb=no            # Function INSTRB
  874.    ###
  875.    ###<select INSTRB('CORPORATE FLOOR','OR',5,2) 
  876.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('CORPORATE FLOOR','OR',5,2)' at line 1
  877. func_extra_interval=yes            # Function INTERVAL
  878.    ###
  879.    ###<select interval(55,10,20,30,40,50,60,70,80,90,100) 
  880.    ###>5
  881. func_extra_last_day=no            # Function LAST_DAY
  882.    ###
  883.    ###<select last_day('1997-04-01') from crash_me_d
  884.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('1997-04-01') from crash_me_d' at line 1
  885. func_extra_last_insert_id=yes        # Function LAST_INSERT_ID
  886.    ###
  887.    ###<select last_insert_id() 
  888.    ###>0
  889. func_extra_least=yes            # Function LEAST
  890.    ###
  891.    ###<select least('HARRY','HARRIOT','HAROLD') 
  892.    ###>HAROLD
  893. func_extra_length=error            # Function LENGTH
  894.    ###
  895.    ###<select length(1) 
  896.    ###>1
  897.    ###We expected '2' but got '1' 
  898. func_extra_lengthb=no            # Function LENGTHB
  899.    ###
  900.    ###<select lengthb('CANDIDE') 
  901.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('CANDIDE')' at line 1
  902. func_extra_lfill3arg=no            # Function LFILL (3 arg)
  903.    ###
  904.    ###<select lfill('abcd','.',6) 
  905.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abcd','.',6)' at line 1
  906. func_extra_like=yes            # Function LIKE in SELECT
  907.    ###
  908.    ###<select 'a' like 'a%' 
  909.    ###>1
  910. func_extra_like_escape=yes        # Function LIKE ESCAPE in SELECT
  911.    ###
  912.    ###<select '%' like 'a%' escape 'a' 
  913.    ###>1
  914. func_extra_ln=yes            # Function LN
  915.    ###
  916.    ###<select ln(95) 
  917.    ###>4.553877
  918. func_extra_log(m_n)=yes            # Function LOG(m,n)
  919.    ###
  920.    ###<select log(10,100) 
  921.    ###>2.000000
  922. func_extra_logn=no            # Function LOGN
  923.    ###
  924.    ###<select logn(2) 
  925.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(2)' at line 1
  926. func_extra_lpad=yes            # Function LPAD
  927.    ###
  928.    ###<select lpad('hi',4,'??') 
  929.    ###>??hi
  930. func_extra_ltrim2arg=no            # Function LTRIM (2 arg)
  931.    ###
  932.    ###<select ltrim('..abcd..','.') 
  933.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near ''.')' at line 1
  934. func_extra_makedate=no            # Function MAKEDATE
  935.    ###
  936.    ###<select MAKEDATE(1963,228) from crash_me_d
  937.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1963,228) from crash_me_d' at line 1
  938. func_extra_maketime=no            # Function MAKETIME
  939.    ###
  940.    ###<select MAKETIME(20,02,12) 
  941.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(20,02,12)' at line 1
  942. func_extra_mapchar=no            # Function MAPCHAR
  943.    ###
  944.    ###<select mapchar('AΓ') 
  945.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('AΓ')' at line 1
  946. func_extra_mdy=no            # Function MDY
  947.    ###
  948.    ###<select mdy(7,1,1998) from crash_me_d
  949.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(7,1,1998) from crash_me_d' at line 1
  950. func_extra_microsecond=no        # Function MICROSECOND
  951.    ###
  952.    ###<select MICROSECOND('19630816200212111111') 
  953.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('19630816200212111111')' at line 1
  954. func_extra_mid=yes            # Function SUBSTRING as MID
  955.    ###
  956.    ###<select mid('hello',3,2) 
  957.    ###>ll
  958. func_extra_months_between=no        # Function MONTHS_BETWEEN
  959.    ###
  960.    ###<select months_between('1997-02-02','1997-01-01') from crash_me_d
  961.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('1997-02-02','1997-01-01') from crash_me_d' at line 1
  962. func_extra_noround=no            # Function NOROUND
  963.    ###< select noround(22.6) 
  964.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(22.6)' at line 1
  965.    ###< select noround(22.6) 
  966.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(22.6)' at line 1
  967.    ###< select noround(22.6) 
  968.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(22.6)' at line 1
  969. func_extra_not=yes            # Function NOT in SELECT
  970.    ###
  971.    ###<select not 0 
  972.    ###>1
  973. func_extra_not_between=yes        # Function NOT BETWEEN in SELECT
  974.    ###
  975.    ###<select 5 not between 4 and 6 
  976.    ###>0
  977. func_extra_not_like=yes            # Function NOT LIKE in SELECT
  978.    ###
  979.    ###<select 'a' not like 'a%' 
  980.    ###>0
  981. func_extra_num=no            # Function NUM
  982.    ###
  983.    ###<select NUM('2123') 
  984.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('2123')' at line 1
  985. func_extra_odbc_convert=no        # Function ODBC CONVERT
  986.    ###
  987.    ###<select convert(5,SQL_CHAR) 
  988.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQL_CHAR)' at line 1
  989. func_extra_password=yes            # Function PASSWORD
  990.    ###
  991.    ###<select password('hello') 
  992.    ###>70de51425df9d787
  993. func_extra_paste=no            # Function PASTE
  994.    ###
  995.    ###<select paste('ABCDEFG',3,2,'1234') 
  996.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('ABCDEFG',3,2,'1234')' at line 1
  997. func_extra_patindex=no            # Function PATINDEX
  998.    ###
  999.    ###<select patindex('%a%','crash') 
  1000.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('%a%','crash')' at line 1
  1001. func_extra_period_add=yes        # Function PERIOD_ADD
  1002.    ###
  1003.    ###<select period_add(9602,-12) from crash_me_d
  1004.    ###>199502
  1005. func_extra_period_diff=yes        # Function PERIOD_DIFF
  1006.    ###
  1007.    ###<select period_diff(199505,199404) from crash_me_d
  1008.    ###>13
  1009. func_extra_pow=yes            # Function POW
  1010.    ###
  1011.    ###<select pow(3,2) 
  1012.    ###>9.000000
  1013. func_extra_range=no            # Function RANGE
  1014.    ###
  1015.    ###<select range(a) 
  1016.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a)' at line 1
  1017. func_extra_regexp=yes            # Function REGEXP in SELECT
  1018.    ###
  1019.    ###<select 'a' regexp '^(a|b)*$' 
  1020.    ###>1
  1021. func_extra_replace2arg=no        # Function REPLACE (2 arg) 
  1022.    ###
  1023.    ###<select replace('AbCd','bC') 
  1024.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
  1025. func_extra_replicate=no            # Function REPLICATE
  1026.    ###
  1027.    ###<select replicate('a',5) 
  1028.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('a',5)' at line 1
  1029. func_extra_reverse=yes            # Function REVERSE
  1030.    ###
  1031.    ###<select reverse('abcd') 
  1032.    ###>dcba
  1033. func_extra_rfill3arg=no            # Function RFILL (3 arg)
  1034.    ###
  1035.    ###<select rfill('abcd','.',6) 
  1036.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abcd','.',6)' at line 1
  1037. func_extra_root=no            # Function ROOT
  1038.    ###
  1039.    ###<select root(4) 
  1040.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(4)' at line 1
  1041. func_extra_round1=yes            # Function ROUND(1 arg)
  1042.    ###
  1043.    ###<select round(5.63) 
  1044.    ###>6
  1045. func_extra_rpad=yes            # Function RPAD
  1046.    ###
  1047.    ###<select rpad('hi',4,'??') 
  1048.    ###>hi??
  1049. func_extra_rpad4arg=no            # Function RPAD (4 arg)
  1050.    ###
  1051.    ###<select rpad('abcd',2,'+-',8) 
  1052.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '8)' at line 1
  1053. func_extra_rtrim2arg=no            # Function RTRIM (2 arg)
  1054.    ###
  1055.    ###<select rtrim('..abcd..','.') 
  1056.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near ''.')' at line 1
  1057. func_extra_sec_to_time=yes        # Function SEC_TO_TIME
  1058.    ###
  1059.    ###<select sec_to_time(5001) 
  1060.    ###>01:23:21
  1061. func_extra_sinh=no            # Function SINH
  1062.    ###
  1063.    ###<select sinh(1) 
  1064.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1)' at line 1
  1065. func_extra_str=no            # Function STR
  1066.    ###
  1067.    ###<select str(123.45,5,1) 
  1068.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(123.45,5,1)' at line 1
  1069. func_extra_strcmp=yes            # Function STRCMP
  1070.    ###
  1071.    ###<select strcmp('abc','adc') 
  1072.    ###>-1
  1073. func_extra_stuff=no            # Function STUFF
  1074.    ###
  1075.    ###<select stuff('abc',2,3,'xyz') 
  1076.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abc',2,3,'xyz')' at line 1
  1077. func_extra_subdate=no            # Function SUBDATE
  1078.    ###
  1079.    ###<select SUBDATE('2002-12-04',3) from crash_me_d
  1080.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '3) from crash_me_d' at line 1
  1081. func_extra_substr2arg=no        # Function SUBSTR (2 arg)
  1082.    ###
  1083.    ###<select substr('abcd',2) 
  1084.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abcd',2)' at line 1
  1085. func_extra_substr3arg=no        # Function SUBSTR (3 arg)
  1086.    ###
  1087.    ###<select substr('abcd',2,2) 
  1088.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abcd',2,2)' at line 1
  1089. func_extra_substrb=no            # Function SUBSTRB
  1090.    ###
  1091.    ###<select SUBSTRB('ABCDEFG',5,4.2) 
  1092.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('ABCDEFG',5,4.2)' at line 1
  1093. func_extra_substring_index=yes        # Function SUBSTRING_INDEX
  1094.    ###
  1095.    ###<select substring_index('www.tcx.se','.',-2) 
  1096.    ###>tcx.se
  1097. func_extra_subtime=no            # Function SUBTIME
  1098.    ###
  1099.    ###<select SUBTIME('20:02:15','00:00:03') 
  1100.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('20:02:15','00:00:03')' at line 1
  1101. func_extra_sysdate=yes            # Function SYSDATE
  1102.    ###
  1103.    ###<select sysdate() 
  1104.    ###>2003-08-27 19:55:21
  1105. func_extra_tail=no            # Function TAIL
  1106.    ###
  1107.    ###<select tail('ABCDEFG',3) 
  1108.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('ABCDEFG',3)' at line 1
  1109. func_extra_tanh=no            # Function TANH
  1110.    ###
  1111.    ###<select tanh(1) 
  1112.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1)' at line 1
  1113. func_extra_time=no            # Function TIME
  1114.    ###
  1115.    ###<select time('20:02:12') 
  1116.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('20:02:12')' at line 1
  1117. func_extra_time_to_sec=yes        # Function TIME_TO_SEC
  1118.    ###
  1119.    ###<select time_to_sec('01:23:21') 
  1120.    ###>5001
  1121. func_extra_timediff=no            # Function TIMEDIFF
  1122.    ###
  1123.    ###<select TIMEDIFF('20:02:15','20:02:12') 
  1124.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('20:02:15','20:02:12')' at line 1
  1125. func_extra_timestamp=no            # Function TIMESTAMP
  1126.    ###
  1127.    ###<select timestamp('19630816','00200212') 
  1128.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('19630816','00200212')' at line 1
  1129. func_extra_to_days=yes            # Function TO_DAYS
  1130.    ###
  1131.    ###<select to_days('1996-01-01') from crash_me_d
  1132.    ###>729024
  1133. func_extra_translate=no            # Function TRANSLATE
  1134.    ###
  1135.    ###<select translate('abc','bc','de') 
  1136.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abc','bc','de')' at line 1
  1137. func_extra_trim1arg=yes            # Function TRIM (1 arg)
  1138.    ###
  1139.    ###<select trim(' abcd ') 
  1140.    ###>abcd
  1141. func_extra_trim2arg=no            # Function TRIM (2 arg)
  1142.    ###
  1143.    ###<select trim('..abcd..','.') 
  1144.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near ''.')' at line 1
  1145. func_extra_trim_many_char=error        # Function TRIM; Many char extension
  1146.    ###
  1147.    ###<select trim(':!' FROM ':abc!') 
  1148.    ###>:abc!
  1149.    ###We expected 'abc' but got ':abc!' 
  1150. func_extra_trim_substring=yes        # Function TRIM; Substring extension
  1151.    ###
  1152.    ###<select trim('cb' FROM 'abccb') 
  1153.    ###>abc
  1154. func_extra_trunc=no            # Function TRUNC
  1155.    ###
  1156.    ###<select trunc(18.18,-1) 
  1157.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(18.18,-1)' at line 1
  1158. func_extra_trunc1arg=no            # Function TRUNC (1 arg)
  1159.    ###
  1160.    ###<select trunc(222.6) 
  1161.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(222.6)' at line 1
  1162. func_extra_uid=no            # Function UID
  1163.    ###
  1164.    ###<select uid 
  1165.    ###> execute failed:Unknown column 'uid' in 'field list'
  1166. func_extra_unix_timestamp=yes        # Function UNIX_TIMESTAMP
  1167.    ###
  1168.    ###<select unix_timestamp() 
  1169.    ###>1062003321
  1170. func_extra_userenv=no            # Function USERENV
  1171.    ###
  1172.    ###<select userenv 
  1173.    ###> execute failed:Unknown column 'userenv' in 'field list'
  1174. func_extra_value=no            # Function VALUE
  1175.    ###
  1176.    ###<select value(NULL,'WALRUS') 
  1177.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(NULL,'WALRUS')' at line 1
  1178. func_extra_version=yes            # Function VERSION
  1179.    ###
  1180.    ###<select version() 
  1181.    ###>4.0.15-debug-log
  1182. func_extra_weekday=yes            # Function WEEKDAY
  1183.    ###
  1184.    ###<select weekday('1997-11-29') from crash_me_d
  1185.    ###>5
  1186. func_extra_weekofyear=no        # Function WEEKOFYEAR
  1187.    ###
  1188.    ###<select WEEKOFYEAR('1963-08-16') from crash_me_d
  1189.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('1963-08-16') from crash_me_d' at line 1
  1190. func_extra_|=yes            # Function | (bitwise or)
  1191.    ###
  1192.    ###<select 1 | 2 
  1193.    ###>3
  1194. func_extra_||=yes            # Function OR as '||'
  1195.    ###
  1196.    ###<select 1=0 || 1=1 
  1197.    ###>1
  1198. func_extra_~*=no            # Function ~* (case insensitive compare)
  1199.    ###
  1200.    ###<select 'hi' ~* 'HI' 
  1201.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '~* 'HI'' at line 1
  1202. func_odbc_abs=yes            # Function ABS
  1203.    ###
  1204.    ###<select abs(-5) 
  1205.    ###>5
  1206. func_odbc_acos=yes            # Function ACOS
  1207.    ###
  1208.    ###<select acos(0) 
  1209.    ###>1.570796
  1210. func_odbc_ascii=yes            # Function ASCII
  1211.    ###
  1212.    ###<select ASCII('A') 
  1213.    ###>65
  1214. func_odbc_asin=yes            # Function ASIN
  1215.    ###
  1216.    ###<select asin(1) 
  1217.    ###>1.570796
  1218. func_odbc_atan=yes            # Function ATAN
  1219.    ###
  1220.    ###<select atan(1) 
  1221.    ###>0.785398
  1222. func_odbc_atan2=yes            # Function ATAN2
  1223.    ###
  1224.    ###<select atan2(1,0) 
  1225.    ###>1.570796
  1226. func_odbc_ceiling=yes            # Function CEILING
  1227.    ###
  1228.    ###<select ceiling(-4.5) 
  1229.    ###>-4
  1230. func_odbc_char=yes            # Function CHAR
  1231.    ###
  1232.    ###<select CHAR(65) 
  1233.    ###>A
  1234. func_odbc_concat=yes            # Function CONCAT(2 arg)
  1235.    ###
  1236.    ###<select concat('a','b') 
  1237.    ###>ab
  1238. func_odbc_cos=yes            # Function COS
  1239.    ###
  1240.    ###<select cos(0) 
  1241.    ###>1.000000
  1242. func_odbc_cot=yes            # Function COT
  1243.    ###
  1244.    ###<select cot(1) 
  1245.    ###>0.64209262
  1246. func_odbc_curdate=yes            # Function CURDATE
  1247.    ###
  1248.    ###<select curdate() 
  1249.    ###>2003-08-27
  1250. func_odbc_curtime=yes            # Function CURTIME
  1251.    ###
  1252.    ###<select curtime() 
  1253.    ###>19:55:21
  1254. func_odbc_database=yes            # Function DATABASE
  1255.    ###
  1256.    ###<select database() 
  1257.    ###>test
  1258. func_odbc_dayname=yes            # Function DAYNAME
  1259.    ###< insert into crash_me_d values('1997-02-01')
  1260.    ###
  1261.    ###<select dayname(a) from crash_me_d
  1262.    ###>Saturday
  1263.    ###< insert into crash_me_d values('1997-02-01')
  1264.    ###< insert into crash_me_d values('1997-02-01')
  1265. func_odbc_dayofmonth=yes        # Function DAYOFMONTH
  1266.    ###< insert into crash_me_d values('1997-02-01')
  1267.    ###
  1268.    ###<select dayofmonth(a) from crash_me_d
  1269.    ###>1
  1270.    ###< insert into crash_me_d values('1997-02-01')
  1271.    ###< insert into crash_me_d values('1997-02-01')
  1272. func_odbc_dayofweek=yes            # Function DAYOFWEEK
  1273.    ###< insert into crash_me_d values('1997-02-01')
  1274.    ###
  1275.    ###<select dayofweek(a) from crash_me_d
  1276.    ###>7
  1277.    ###< insert into crash_me_d values('1997-02-01')
  1278.    ###< insert into crash_me_d values('1997-02-01')
  1279. func_odbc_dayofyear=yes            # Function DAYOFYEAR
  1280.    ###< insert into crash_me_d values('1997-02-01')
  1281.    ###
  1282.    ###<select dayofyear(a) from crash_me_d
  1283.    ###>32
  1284.    ###< insert into crash_me_d values('1997-02-01')
  1285.    ###< insert into crash_me_d values('1997-02-01')
  1286. func_odbc_degrees=yes            # Function DEGREES
  1287.    ###
  1288.    ###<select degrees(6.283185) 
  1289.    ###>359.99998239991
  1290. func_odbc_difference=no            # Function DIFFERENCE()
  1291.    ###
  1292.    ###<select difference('abc','abe') 
  1293.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abc','abe')' at line 1
  1294.    ###
  1295.    ###<select {fn difference('abc','abe') } 
  1296.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '('abc','abe') }' at line 1
  1297. func_odbc_exp=yes            # Function EXP
  1298.    ###
  1299.    ###<select exp(1.0) 
  1300.    ###>2.718282
  1301. func_odbc_floor=yes            # Function FLOOR
  1302.    ###
  1303.    ###<select floor(2.5) 
  1304.    ###>2
  1305. func_odbc_fn_left=yes            # Function ODBC syntax LEFT & RIGHT
  1306.    ###
  1307.    ###<select { fn LEFT( { fn RIGHT('abcd',2) },1) } 
  1308.    ###>c
  1309. func_odbc_hour=yes            # Function HOUR
  1310.    ###< insert into crash_me_t values(20:08:16)
  1311.    ###
  1312.    ###<select hour('12:13:14') 
  1313.    ###>12
  1314.    ###< insert into crash_me_t values(20:08:16)
  1315.    ###< insert into crash_me_t values(20:08:16)
  1316. func_odbc_hour_time=yes            # Function ANSI HOUR
  1317.    ###< insert into crash_me_t values(20:08:16)
  1318.    ###
  1319.    ###<select hour(TIME '12:13:14') 
  1320.    ###>12
  1321.    ###< insert into crash_me_t values(20:08:16)
  1322.    ###< insert into crash_me_t values(20:08:16)
  1323. func_odbc_ifnull=yes            # Function IFNULL
  1324.    ###
  1325.    ###<select ifnull(2,3) 
  1326.    ###>2
  1327. func_odbc_insert=yes            # Function INSERT
  1328.    ###
  1329.    ###<select insert('abcd',2,2,'ef') 
  1330.    ###>aefd
  1331. func_odbc_lcase=yes            # Function LCASE
  1332.    ###
  1333.    ###<select lcase('ABC') 
  1334.    ###>abc
  1335. func_odbc_left=yes            # Function LEFT
  1336.    ###
  1337.    ###<select left('abcd',2) 
  1338.    ###>ab
  1339. func_odbc_length=yes            # Function REAL LENGTH
  1340.    ###
  1341.    ###<select length('abcd ') 
  1342.    ###>5
  1343. func_odbc_length_without_space=error    # Function ODBC LENGTH
  1344.    ###
  1345.    ###<select length('abcd ') 
  1346.    ###>5
  1347.    ###We expected '4' but got '5' 
  1348.    ###
  1349.    ###<select {fn length('abcd ') } 
  1350.    ###>5
  1351.    ###We expected '4' but got '5' 
  1352. func_odbc_locate_2=yes            # Function LOCATE(2 arg)
  1353.    ###
  1354.    ###<select locate('bcd','abcd') 
  1355.    ###>2
  1356. func_odbc_locate_3=yes            # Function LOCATE(3 arg)
  1357.    ###
  1358.    ###<select locate('bcd','abcd',3) 
  1359.    ###>0
  1360. func_odbc_log=yes            # Function LOG
  1361.    ###
  1362.    ###<select log(2) 
  1363.    ###>0.693147
  1364. func_odbc_log10=yes            # Function LOG10
  1365.    ###
  1366.    ###<select log10(10) 
  1367.    ###>1.000000
  1368. func_odbc_ltrim=yes            # Function LTRIM
  1369.    ###
  1370.    ###<select ltrim('   abcd') 
  1371.    ###>abcd
  1372. func_odbc_minute=yes            # Function MINUTE
  1373.    ###< insert into crash_me_t values(20:08:16)
  1374.    ###
  1375.    ###<select minute('12:13:14') 
  1376.    ###>13
  1377.    ###< insert into crash_me_t values(20:08:16)
  1378.    ###< insert into crash_me_t values(20:08:16)
  1379. func_odbc_mod=yes            # Function MOD
  1380.    ###
  1381.    ###<select mod(11,7) 
  1382.    ###>4
  1383. func_odbc_month=yes            # Function MONTH
  1384.    ###< insert into crash_me_d values('1997-02-01')
  1385.    ###
  1386.    ###<select month(a) from crash_me_d
  1387.    ###>2
  1388.    ###< insert into crash_me_d values('1997-02-01')
  1389.    ###< insert into crash_me_d values('1997-02-01')
  1390. func_odbc_monthname=yes            # Function MONTHNAME
  1391.    ###< insert into crash_me_d values('1997-02-01')
  1392.    ###
  1393.    ###<select monthname(a) from crash_me_d
  1394.    ###>February
  1395.    ###< insert into crash_me_d values('1997-02-01')
  1396.    ###< insert into crash_me_d values('1997-02-01')
  1397. func_odbc_now=yes            # Function NOW
  1398.    ###
  1399.    ###<select now() 
  1400.    ###>2003-08-27 19:55:21
  1401. func_odbc_pi=yes            # Function PI
  1402.    ###
  1403.    ###<select pi() 
  1404.    ###>3.141593
  1405. func_odbc_power=yes            # Function POWER
  1406.    ###
  1407.    ###<select power(2,4) 
  1408.    ###>16.000000
  1409. func_odbc_quarter=yes            # Function QUARTER
  1410.    ###< insert into crash_me_d values('1997-02-01')
  1411.    ###
  1412.    ###<select quarter(a) from crash_me_d
  1413.    ###>1
  1414.    ###< insert into crash_me_d values('1997-02-01')
  1415.    ###< insert into crash_me_d values('1997-02-01')
  1416. func_odbc_radians=yes            # Function RADIANS
  1417.    ###
  1418.    ###<select radians(360) 
  1419.    ###>6.2831853071796
  1420. func_odbc_rand=yes            # Function RAND
  1421.    ###
  1422.    ###<select rand(1) 
  1423.    ###>0.40540353712198
  1424. func_odbc_repeat=yes            # Function REPEAT
  1425.    ###
  1426.    ###<select repeat('ab',3) 
  1427.    ###>ababab
  1428. func_odbc_replace=yes            # Function REPLACE
  1429.    ###
  1430.    ###<select replace('abbaab','ab','ba') 
  1431.    ###>bababa
  1432. func_odbc_right=yes            # Function RIGHT
  1433.    ###
  1434.    ###<select right('abcd',2) 
  1435.    ###>cd
  1436. func_odbc_round=yes            # Function ROUND(2 arg)
  1437.    ###
  1438.    ###<select round(5.63,2) 
  1439.    ###>5.63
  1440. func_odbc_rtrim=yes            # Function RTRIM
  1441.    ###
  1442.    ###<select rtrim(' abcd  ') 
  1443.    ###> abcd
  1444. func_odbc_second=yes            # Function SECOND
  1445.    ###< insert into crash_me_t values(20:08:16)
  1446.    ###
  1447.    ###<select second('12:13:14') 
  1448.    ###>14
  1449.    ###< insert into crash_me_t values(20:08:16)
  1450.    ###< insert into crash_me_t values(20:08:16)
  1451. func_odbc_sign=yes            # Function SIGN
  1452.    ###
  1453.    ###<select sign(-5) 
  1454.    ###>-1
  1455. func_odbc_sin=yes            # Function SIN
  1456.    ###
  1457.    ###<select sin(1) 
  1458.    ###>0.841471
  1459. func_odbc_soundex=yes            # Function SOUNDEX
  1460.    ###
  1461.    ###<select soundex('hello') 
  1462.    ###>H400
  1463. func_odbc_space=yes            # Function SPACE
  1464.    ###
  1465.    ###<select space(5) 
  1466.    ###>     
  1467. func_odbc_sqrt=yes            # Function SQRT
  1468.    ###
  1469.    ###<select sqrt(4) 
  1470.    ###>2.000000
  1471. func_odbc_substring=yes            # Function ODBC SUBSTRING
  1472.    ###
  1473.    ###<select substring('abcd',3,2) 
  1474.    ###>cd
  1475. func_odbc_tan=yes            # Function TAN
  1476.    ###
  1477.    ###<select tan(1) 
  1478.    ###>1.557408
  1479. func_odbc_timestampadd=no        # Function TIMESTAMPADD
  1480.    ###
  1481.    ###<select timestampadd(SQL_TSI_SECOND,1,'1997-01-01 00:00:00') 
  1482.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(SQL_TSI_SECOND,1,'1997-01-01 00:00:00')' at line 1
  1483.    ###
  1484.    ###<select {fn timestampadd(SQL_TSI_SECOND,1,{ts '1997-01-01 00:00:00'}) } 
  1485.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(SQL_TSI_SECOND,1,{ts '1997-01-01 00:00:00'}) }' at line 1
  1486. func_odbc_timestampdiff=no        # Function TIMESTAMPDIFF
  1487.    ###
  1488.    ###<select timestampdiff(SQL_TSI_SECOND,'1997-01-01 00:00:02', '1997-01-01 00:00:01') 
  1489.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(SQL_TSI_SECOND,'1997-01-01 00:00:02', '1997-01-01 00:00:01')' 
  1490.    ###
  1491.    ###<select {fn timestampdiff(SQL_TSI_SECOND,{ts '1997-01-01 00:00:02'}, {ts '1997-01-01 00:00:01'}) } 
  1492.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(SQL_TSI_SECOND,{ts '1997-01-01 00:00:02'}, {ts '1997-01-01 00:
  1493. func_odbc_truncate=yes            # Function TRUNCATE
  1494.    ###
  1495.    ###<select truncate(18.18,-1) 
  1496.    ###>10
  1497. func_odbc_ucase=yes            # Function UCASE
  1498.    ###
  1499.    ###<select ucase('abc') 
  1500.    ###>ABC
  1501. func_odbc_user()=yes            # Function USER()
  1502.    ###
  1503.    ###<select user() 
  1504.    ###>monty@localhost
  1505. func_odbc_week=USA            # WEEK
  1506.    ###<select week('1997-02-01') 
  1507.    ###>4
  1508.    ###We expected '5' but got '4' 
  1509.    ###<select week('1997-02-01') 
  1510.    ###>4
  1511.    ###We expected '5' but got '4' 
  1512.    ###<select week('1997-02-01') 
  1513.    ###>4
  1514.    ###We expected '5' but got '4' 
  1515. func_odbc_year=yes            # Function YEAR
  1516.    ###< insert into crash_me_d values('1997-02-01')
  1517.    ###
  1518.    ###<select year(a) from crash_me_d
  1519.    ###>1997
  1520.    ###< insert into crash_me_d values('1997-02-01')
  1521.    ###< insert into crash_me_d values('1997-02-01')
  1522. func_sql_+=yes                # Function +, -, * and /
  1523.    ###
  1524.    ###<select 5*3-4/2+1 
  1525.    ###>14.00
  1526. func_sql_bit_length=yes            # Function BIT_LENGTH
  1527.    ###
  1528.    ###<select bit_length('abc') 
  1529.    ###>24
  1530. func_sql_cast=yes            # Function CAST
  1531.    ###
  1532.    ###<select CAST(1 as CHAR) 
  1533.    ###>1
  1534. func_sql_char_length=error        # Function CHAR_LENGTH
  1535.    ###
  1536.    ###<select char_length(b) from crash_me  
  1537.    ###>1
  1538.    ###We expected '10' but got '1' 
  1539. func_sql_char_length(constant)=yes    # Function CHAR_LENGTH(constant)
  1540.    ###
  1541.    ###<select char_length('abcd') 
  1542.    ###>4
  1543. func_sql_character_length=yes        # Function CHARACTER_LENGTH
  1544.    ###
  1545.    ###<select character_length('abcd') 
  1546.    ###>4
  1547. func_sql_coalesce=yes            # Function COALESCE
  1548.    ###
  1549.    ###<select coalesce(NULL,'bcd','qwe') 
  1550.    ###>bcd
  1551. func_sql_concat_as_||=error        # Function concatenation with ||
  1552.    ###
  1553.    ###<select 'abc' || 'def' 
  1554.    ###>0
  1555.    ###We expected 'abcdef' but got '0' 
  1556. func_sql_current_date=yes        # Function CURRENT_DATE
  1557.    ###
  1558.    ###<select current_date 
  1559.    ###>2003-08-27
  1560. func_sql_current_time=yes        # Function CURRENT_TIME
  1561.    ###
  1562.    ###<select current_time 
  1563.    ###>19:55:21
  1564. func_sql_current_timestamp=yes        # Function CURRENT_TIMESTAMP
  1565.    ###
  1566.    ###<select current_timestamp 
  1567.    ###>2003-08-27 19:55:21
  1568. func_sql_current_user=with_parenthesis    # CURRENT_USER
  1569.    ###< select CURRENT_USER 
  1570.    ###> execute error:Unknown column 'CURRENT_USER' in 'field list'
  1571.    ###
  1572.    ###< select CURRENT_USER() 
  1573.    ###> OK
  1574.    ###< select CURRENT_USER 
  1575.    ###> OK
  1576.    ###< select CURRENT_USER 
  1577.    ###> execute error:Unknown column 'CURRENT_USER' in 'field list'
  1578.    ###
  1579.    ###< select CURRENT_USER() 
  1580.    ###> OK
  1581. func_sql_extract_sql=yes        # Function EXTRACT
  1582.    ###
  1583.    ###<select extract(minute from timestamp '2000-02-23 18:43:12.987') 
  1584.    ###>43
  1585. func_sql_localtime=yes            # Function LOCALTIME
  1586.    ###
  1587.    ###<select localtime 
  1588.    ###>2003-08-27 19:55:21
  1589. func_sql_localtimestamp=yes        # Function LOCALTIMESTAMP
  1590.    ###
  1591.    ###<select localtimestamp 
  1592.    ###>2003-08-27 19:55:21
  1593. func_sql_lower=yes            # Function LOWER
  1594.    ###
  1595.    ###<select LOWER('ABC') 
  1596.    ###>abc
  1597. func_sql_nullif_num=yes            # Function NULLIF with numbers
  1598.    ###
  1599.    ###<select NULLIF(NULLIF(1,2),1) 
  1600.    ###>
  1601. func_sql_nullif_string=yes        # Function NULLIF with strings
  1602.    ###
  1603.    ###<select NULLIF(NULLIF('first','second'),'first') 
  1604.    ###>
  1605. func_sql_octet_length=yes        # Function OCTET_LENGTH
  1606.    ###
  1607.    ###<select octet_length('abc') 
  1608.    ###>3
  1609. func_sql_position=yes            # Function POSITION
  1610.    ###
  1611.    ###<select position('ll' in 'hello') 
  1612.    ###>3
  1613. func_sql_searched_case=yes        # Function searched CASE
  1614.    ###
  1615.    ###<select case when 1 > 2 then 'false' when 2 > 1 then 'true' end 
  1616.    ###>true
  1617. func_sql_session_user=with_parenthesis    # SESSION_USER
  1618.    ###< select SESSION_USER 
  1619.    ###> execute error:Unknown column 'SESSION_USER' in 'field list'
  1620.    ###
  1621.    ###< select SESSION_USER() 
  1622.    ###> OK
  1623.    ###< select SESSION_USER 
  1624.    ###> execute error:Unknown column 'SESSION_USER' in 'field list'
  1625.    ###
  1626.    ###< select SESSION_USER() 
  1627.    ###> OK
  1628.    ###< select SESSION_USER 
  1629.    ###> execute error:Unknown column 'SESSION_USER' in 'field list'
  1630.    ###
  1631.    ###< select SESSION_USER() 
  1632.    ###> OK
  1633. func_sql_simple_case=yes        # Function simple CASE
  1634.    ###
  1635.    ###<select case 2 when 1 then 'false' when 2 then 'true' end 
  1636.    ###>true
  1637. func_sql_substring=yes            # Function ANSI SQL SUBSTRING
  1638.    ###
  1639.    ###<select substring('abcd' from 2 for 2) 
  1640.    ###>bc
  1641. func_sql_system_user=with_parenthesis    # SYSTEM_USER
  1642.    ###< select SYSTEM_USER 
  1643.    ###> execute error:Unknown column 'SYSTEM_USER' in 'field list'
  1644.    ###
  1645.    ###< select SYSTEM_USER() 
  1646.    ###> OK
  1647.    ###< select SYSTEM_USER 
  1648.    ###> execute error:Unknown column 'SYSTEM_USER' in 'field list'
  1649.    ###
  1650.    ###< select SYSTEM_USER() 
  1651.    ###> OK
  1652.    ###< select SYSTEM_USER 
  1653.    ###> execute error:Unknown column 'SYSTEM_USER' in 'field list'
  1654.    ###
  1655.    ###< select SYSTEM_USER() 
  1656.    ###> OK
  1657. func_sql_trim=yes            # Function TRIM
  1658.    ###
  1659.    ###<select trim(trailing from trim(LEADING FROM ' abc ')) 
  1660.    ###>abc
  1661. func_sql_upper=yes            # Function UPPER
  1662.    ###
  1663.    ###<select UPPER('abc') 
  1664.    ###>ABC
  1665. func_sql_user=with_parenthesis        # USER
  1666.    ###< select USER 
  1667.    ###> execute error:Unknown column 'USER' in 'field list'
  1668.    ###
  1669.    ###< select USER() 
  1670.    ###> OK
  1671.    ###< select USER 
  1672.    ###> execute error:Unknown column 'USER' in 'field list'
  1673.    ###
  1674.    ###< select USER() 
  1675.    ###> OK
  1676.    ###< select USER 
  1677.    ###> execute error:Unknown column 'USER' in 'field list'
  1678.    ###
  1679.    ###< select USER() 
  1680.    ###> OK
  1681. func_where_between=yes            # Function BETWEEN
  1682.    ###
  1683.    ###<select a from crash_me where 5 between 4 and 6
  1684.    ###>1
  1685. func_where_eq_all=no            # Function = ALL
  1686.    ###
  1687.    ###<select a from crash_me where b =all (select b from crash_me)
  1688.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'all (select b from crash_me)' at line 1
  1689. func_where_eq_any=no            # Function = ANY
  1690.    ###
  1691.    ###<select a from crash_me where b =any (select b from crash_me)
  1692.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(select b from crash_me)' at line 1
  1693. func_where_eq_some=no            # Function = SOME
  1694.    ###
  1695.    ###<select a from crash_me where b =some (select b from crash_me)
  1696.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(select b from crash_me)' at line 1
  1697. func_where_exists=no            # Function EXISTS
  1698.    ###
  1699.    ###<select a from crash_me where exists (select * from crash_me)
  1700.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'exists (select * from crash_me)' at line 1
  1701. func_where_in_num=yes            # Function IN on numbers
  1702.    ###
  1703.    ###<select a from crash_me where 2 in (3,2,5,9,5,1)
  1704.    ###>1
  1705. func_where_like=yes            # Function LIKE
  1706.    ###
  1707.    ###<select a from crash_me where b like 'a%'
  1708.    ###>1
  1709. func_where_like_escape=yes        # Function LIKE ESCAPE
  1710.    ###
  1711.    ###<select a from crash_me where b like '%' escape 'a'
  1712.    ###>1
  1713. func_where_match=no            # Function MATCH
  1714.    ###
  1715.    ###<select a from crash_me where 1 match (select a from crash_me)
  1716.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'match (select a from crash_me)' at line 1
  1717. func_where_match_unique=no        # Function MATCH UNIQUE
  1718.    ###
  1719.    ###<select a from crash_me where 1 match unique (select a from crash_me)
  1720.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'match unique (select a from crash_me)' at line 1
  1721. func_where_matches=no            # Function MATCHES
  1722.    ###
  1723.    ###<select a from crash_me where b matcjhes 'a*'
  1724.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'matcjhes 'a*'' at line 1
  1725. func_where_not_between=yes        # Function NOT BETWEEN
  1726.    ###
  1727.    ###<select a from crash_me where 7 not between 4 and 6
  1728.    ###>1
  1729. func_where_not_exists=no        # Function NOT EXISTS
  1730.    ###
  1731.    ###<select a from crash_me where not exists (select * from crash_me where a = 2)
  1732.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'exists (select * from crash_me where a = 2)' at line 1
  1733. func_where_not_like=yes            # Function NOT LIKE
  1734.    ###
  1735.    ###<select a from crash_me where b not like 'b%'
  1736.    ###>1
  1737. func_where_not_unique=no        # Function NOT UNIQUE
  1738.    ###
  1739.    ###<select a from crash_me where not unique (select * from crash_me where a = 2)
  1740.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'unique (select * from crash_me where a = 2)' at line 1
  1741. func_where_unique=no            # Function UNIQUE
  1742.    ###
  1743.    ###<select a from crash_me where unique (select * from crash_me)
  1744.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'unique (select * from crash_me)' at line 1
  1745. functions=yes                # Functions
  1746.    ###< select 1+1 
  1747.    ###> OK
  1748.    ###
  1749.    ###As far as all queries returned OK, result is YES
  1750. group_by=yes                # Group by
  1751.    ###< select a from crash_me group by a
  1752.    ###> OK
  1753.    ###
  1754.    ###As far as all queries returned OK, result is YES
  1755. group_by_alias=yes            # Group by alias
  1756.    ###< select a as ab from crash_me group by ab
  1757.    ###> OK
  1758.    ###
  1759.    ###As far as all queries returned OK, result is YES
  1760. group_by_null=yes            # Group on column with null values
  1761.    ###< create table crash_q (s char(10))
  1762.    ###> OK
  1763.    ###< insert into crash_q values(null)
  1764.    ###> OK
  1765.    ###< insert into crash_q values(null)
  1766.    ###> OK
  1767.    ###
  1768.    ###<select count(*),s from crash_q group by s
  1769.    ###>2
  1770.    ###
  1771.    ###< drop table crash_q 
  1772.    ###> OK
  1773. group_by_position=yes            # Group by position
  1774.    ###< select a from crash_me group by 1
  1775.    ###> OK
  1776.    ###
  1777.    ###As far as all queries returned OK, result is YES
  1778. group_distinct_functions=yes        # Group functions with distinct
  1779.    ###< select count(distinct a) from crash_me
  1780.    ###> OK
  1781.    ###
  1782.    ###As far as all queries returned OK, result is YES
  1783. group_func_extra_bit_and=yes        # Group function BIT_AND
  1784.    ###
  1785.    ###<select bit_and(a),a from crash_me group by a
  1786.    ###>1
  1787. group_func_extra_bit_or=yes        # Group function BIT_OR
  1788.    ###
  1789.    ###<select bit_or(a),a from crash_me group by a
  1790.    ###>1
  1791. group_func_extra_count_distinct_list=yes    # Group function COUNT(DISTINCT expr,expr,...)
  1792.    ###
  1793.    ###<select count(distinct a,b),a from crash_me group by a
  1794.    ###>1
  1795. group_func_extra_std=yes        # Group function STD
  1796.    ###
  1797.    ###<select std(a),a from crash_me group by a
  1798.    ###>0.0000
  1799. group_func_extra_stddev=yes        # Group function STDDEV
  1800.    ###
  1801.    ###<select stddev(a),a from crash_me group by a
  1802.    ###>0.0000
  1803. group_func_extra_variance=no        # Group function VARIANCE
  1804.    ###
  1805.    ###<select variance(a),a from crash_me group by a
  1806.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a),a from crash_me group by a' at line 1
  1807. group_func_sql_any=no            # Group function ANY
  1808.    ###
  1809.    ###<select any(a),a from crash_me group by a
  1810.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a),a from crash_me group by a' at line 1
  1811. group_func_sql_avg=yes            # Group function AVG
  1812.    ###
  1813.    ###<select avg(a),a from crash_me group by a
  1814.    ###>1.0000
  1815. group_func_sql_count_*=yes        # Group function COUNT (*)
  1816.    ###
  1817.    ###<select count(*),a from crash_me group by a
  1818.    ###>1
  1819. group_func_sql_count_column=yes        # Group function COUNT column name
  1820.    ###
  1821.    ###<select count(a),a from crash_me group by a
  1822.    ###>1
  1823. group_func_sql_count_distinct=yes    # Group function COUNT(DISTINCT expr)
  1824.    ###
  1825.    ###<select count(distinct a),a from crash_me group by a
  1826.    ###>1
  1827. group_func_sql_every=no            # Group function EVERY
  1828.    ###
  1829.    ###<select every(a),a from crash_me group by a
  1830.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a),a from crash_me group by a' at line 1
  1831. group_func_sql_max=yes            # Group function MAX on numbers
  1832.    ###
  1833.    ###<select max(a),a from crash_me group by a
  1834.    ###>1
  1835. group_func_sql_max_str=yes        # Group function MAX on strings
  1836.    ###
  1837.    ###<select max(b),a from crash_me group by a
  1838.    ###>a
  1839. group_func_sql_min=yes            # Group function MIN on numbers
  1840.    ###
  1841.    ###<select min(a),a from crash_me group by a
  1842.    ###>1
  1843. group_func_sql_min_str=yes        # Group function MIN on strings
  1844.    ###
  1845.    ###<select min(b),a from crash_me group by a
  1846.    ###>a
  1847. group_func_sql_some=no            # Group function SOME
  1848.    ###
  1849.    ###<select some(a),a from crash_me group by a
  1850.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a),a from crash_me group by a' at line 1
  1851. group_func_sql_sum=yes            # Group function SUM
  1852.    ###
  1853.    ###<select sum(a),a from crash_me group by a
  1854.    ###>1
  1855. group_functions=yes            # Group functions
  1856.    ###< select count(*) from crash_me
  1857.    ###> OK
  1858.    ###
  1859.    ###As far as all queries returned OK, result is YES
  1860. group_many_distinct_functions=yes    # Group functions with several distinct
  1861.    ###< select count(distinct a), count(distinct b) from crash_me
  1862.    ###> OK
  1863.    ###
  1864.    ###As far as all queries returned OK, result is YES
  1865. group_on_unused=yes            # Group on unused column
  1866.    ###< select count(*) from crash_me group by a
  1867.    ###> OK
  1868.    ###
  1869.    ###As far as all queries returned OK, result is YES
  1870. has_true_false=no            # TRUE and FALSE
  1871.    ###< select (1=1)=true 
  1872.    ###> execute error:Unknown column 'true' in 'field list'
  1873.    ###< select (1=1)=true 
  1874.    ###> OK
  1875.    ###< select (1=1)=true 
  1876.    ###> execute error:Unknown column 'true' in 'field list'
  1877. having=yes                # Having
  1878.    ###<select a from crash_me group by a having a > 0
  1879.    ###>1
  1880.    ###
  1881.    ###<select a from crash_me group by a having a < 0
  1882.    ###> didn't return any result:
  1883. having_with_alias=yes            # Having on alias
  1884.    ###< select a as ab from crash_me group by a having ab > 0
  1885.    ###> OK
  1886.    ###
  1887.    ###As far as all queries returned OK, result is YES
  1888. having_with_group=yes            # Having with group function
  1889.    ###< select a from crash_me group by a having count(*) = 1
  1890.    ###> OK
  1891.    ###
  1892.    ###As far as all queries returned OK, result is YES
  1893. hex_numbers=yes                # hex numbers (0x41)
  1894.    ###< select 0x41 
  1895.    ###> OK
  1896.    ###
  1897.    ###As far as all queries returned OK, result is YES
  1898. hex_strings=yes                # hex strings (x'1ace')
  1899.    ###< select x'1ace' 
  1900.    ###> OK
  1901.    ###
  1902.    ###As far as all queries returned OK, result is YES
  1903. ignore_end_space=yes            # Ignore end space in compare
  1904.    ###
  1905.    ###<select b from crash_me where b = 'a '
  1906.    ###>a
  1907. index_in_create=yes            # index in create table
  1908.    ###< create table crash_q (q integer not null,index (q))
  1909.    ###> OK
  1910.    ###< drop table crash_q 
  1911.    ###> OK
  1912.    ###
  1913.    ###As far as all queries returned OK, result is YES
  1914. index_namespace=yes            # different namespace for index
  1915.    ###< create index crash_me on crash_me (b)
  1916.    ###> OK
  1917.    ###< drop index crash_me on crash_me
  1918.    ###> OK
  1919.    ###
  1920.    ###As far as all queries returned OK, result is YES
  1921. index_parts=yes                # index on column part (extension)
  1922.    ###< create index crash_q on crash_me (b(5))
  1923.    ###> OK
  1924.    ###< drop index crash_q on crash_me
  1925.    ###> OK
  1926.    ###
  1927.    ###As far as all queries returned OK, result is YES
  1928. inner_join=yes                # inner join
  1929.    ###< select crash_me.a from crash_me inner join crash_me2 ON crash_me.a=crash_me2.a
  1930.    ###> OK
  1931.    ###
  1932.    ###As far as all queries returned OK, result is YES
  1933. insert_default_values=no        # INSERT DEFAULT VALUES
  1934.    ###< create table crash_me_q (a int)
  1935.    ###> OK
  1936.    ###< insert into crash_me_q  DEFAULT VALUES
  1937.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT VALUES' at line 1
  1938.    ###< drop table crash_me_q 
  1939.    ###> OK
  1940.    ###
  1941.    ###As far as some queries didnt return OK, result is NO
  1942. insert_empty_string=yes            # insert empty string
  1943.    ###< create table crash_q (a char(10) not null,b char(10)) 
  1944.    ###> OK
  1945.    ###< insert into crash_q values ('','')
  1946.    ###> OK
  1947.    ###< drop table crash_q 
  1948.    ###> OK
  1949.    ###
  1950.    ###As far as all queries returned OK, result is YES
  1951. insert_multi_value=yes            # INSERT with Value lists
  1952.    ###< create table crash_q (s char(10))
  1953.    ###> OK
  1954.    ###< insert into crash_q values ('a'),('b')
  1955.    ###> OK
  1956.    ###< drop table crash_q 
  1957.    ###> OK
  1958.    ###
  1959.    ###As far as all queries returned OK, result is YES
  1960. insert_select=yes            # insert INTO ... SELECT ...
  1961.    ###< create table crash_q (a int)
  1962.    ###> OK
  1963.    ###< insert into crash_q (a) SELECT crash_me.a from crash_me
  1964.    ###> OK
  1965.    ###< drop table crash_q 
  1966.    ###> OK
  1967.    ###
  1968.    ###As far as all queries returned OK, result is YES
  1969. insert_with_default=yes            # INSERT with DEFAULT
  1970.    ###< create table crash_me_q (a int)
  1971.    ###> OK
  1972.    ###< insert into crash_me_q (a) values (DEFAULT)
  1973.    ###> OK
  1974.    ###< drop table crash_me_q 
  1975.    ###> OK
  1976.    ###
  1977.    ###As far as all queries returned OK, result is YES
  1978. insert_with_empty_value_list=no        # INSERT with empty value list
  1979.    ###< create table crash_me_q (a int)
  1980.    ###> OK
  1981.    ###< insert into crash_me_q (a) values ()
  1982.    ###> execute error:Column count doesn't match value count at row 1
  1983.    ###< drop table crash_me_q 
  1984.    ###> OK
  1985.    ###
  1986.    ###As far as some queries didnt return OK, result is NO
  1987. insert_with_set=yes            # INSERT with set syntax
  1988.    ###< create table crash_q (a integer)
  1989.    ###> OK
  1990.    ###< insert into crash_q SET a=1
  1991.    ###> OK
  1992.    ###< drop table crash_q 
  1993.    ###> OK
  1994.    ###
  1995.    ###As far as all queries returned OK, result is YES
  1996. intersect=no                # intersect
  1997.    ###< select * from crash_me intersect select * from crash_me3
  1998.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me3' at line 1
  1999.    ###
  2000.    ###As far as some queries didnt return OK, result is NO
  2001. intersect_all=no            # intersect all
  2002.    ###< select * from crash_me intersect all select * from crash_me3
  2003.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'all select * from crash_me3' at line 1
  2004.    ###
  2005.    ###As far as some queries didnt return OK, result is NO
  2006. intersect_all_incompat=no        # intersect all (incompatible lists)
  2007.    ###< select * from crash_me intersect all select * from crash_me2
  2008.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'all select * from crash_me2' at line 1
  2009.    ###
  2010.    ###As far as some queries didnt return OK, result is NO
  2011. intersect_incompat=no            # intersect (incompatible lists)
  2012.    ###< select * from crash_me intersect select * from crash_me2
  2013.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me2' at line 1
  2014.    ###
  2015.    ###As far as some queries didnt return OK, result is NO
  2016. join_tables=31                # tables in join
  2017.    ###We are trying (example with N=5):
  2018.    ###select crash_me.a,t0.a,t1.a,t2.a,t3.a,t4.a from crash_me,crash_me t0,crash_me t1,crash_me t2,crash_me t3,crash_me t4
  2019.    ### 32:FAIL 7:OK 19:OK 25:OK 28:OK 30:OK 31:FAIL
  2020. left_outer_join=yes            # left outer join
  2021.    ###< select crash_me.a from crash_me left join crash_me2 ON crash_me.a=crash_me2.a
  2022.    ###> OK
  2023.    ###
  2024.    ###As far as all queries returned OK, result is YES
  2025. left_outer_join_using=yes        # left outer join using
  2026.    ###< select c1 from crash_me left join crash_me2 using (a)
  2027.    ###> OK
  2028.    ###
  2029.    ###As far as all queries returned OK, result is YES
  2030. length_of_varchar_field=actual length    # CHARACTER_LENGTH(varchar_field)
  2031.    ###< CREATE TABLE crash_me1 (S1 VARCHAR(100))
  2032.    ###> OK
  2033.    ###< INSERT INTO crash_me1 VALUES ('X')
  2034.    ###> OK
  2035.    ###
  2036.    ###< SELECT CHARACTER_LENGTH(S1) FROM crash_me1
  2037.    ### > 1
  2038.    ###< drop table crash_me1 
  2039.    ###> OK
  2040. like_with_column=yes            # column LIKE column
  2041.    ###< create table crash_q (a char(10),b char(10))
  2042.    ###> OK
  2043.    ###< insert into crash_q values('abc','abc')
  2044.    ###> OK
  2045.    ###< select * from crash_q where a like b
  2046.    ###> OK
  2047.    ###< drop table crash_q 
  2048.    ###> OK
  2049.    ###
  2050.    ###As far as all queries returned OK, result is YES
  2051. like_with_number=yes            # LIKE on numbers
  2052.    ###< create table crash_q (a int,b int)
  2053.    ###> OK
  2054.    ###< insert into crash_q values(10,10)
  2055.    ###> OK
  2056.    ###< select * from crash_q where a like '10'
  2057.    ###> OK
  2058.    ###< drop table crash_q 
  2059.    ###> OK
  2060.    ###
  2061.    ###As far as all queries returned OK, result is YES
  2062. lock_tables=yes                # lock table
  2063.    ###< lock table crash_me READ
  2064.    ###> OK
  2065.    ###< unlock tables
  2066.    ###> OK
  2067.    ###
  2068.    ###As far as all queries returned OK, result is YES
  2069. logical_value=1                # Value of logical operation (1=1)
  2070.    ###<select (1=1) 
  2071.    ###>1
  2072. max_big_expressions=10            # big expressions
  2073.    ###We are trying (example with N=5):
  2074.    ###select 0+(1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+...(14308)
  2075.    ### 50:FAIL 10:OK 30:FAIL 14:FAIL 11:FAIL
  2076. max_char_size=255            # max char() size
  2077.    ###We are trying (example with N=5):
  2078.    ###create table crash_q (q char(5))
  2079.    ###insert into crash_q values ('aaaaa')
  2080.    ###select * from crash_q
  2081.    ### 524287:FAIL 104858:FAIL 20972:FAIL 4195:FAIL 839:FAIL 168:OK 503:FAIL 235:OK 369:FAIL 262:FAIL 241:OK 251:OK 256:FAIL 252:OK 254:OK 255:OK
  2082. max_column_name=64            # column name length
  2083.    ###We are trying (example with N=5):
  2084.    ###create table crash_q (qaaaaa integer)
  2085.    ###insert into crash_q (qaaaaa) values(1)
  2086.    ###select qaaaaa from crash_q
  2087.    ### 256:FAIL 51:OK 153:FAIL 72:FAIL 55:OK 63:OK 67:FAIL 64:FAIL
  2088. max_columns=3398            # Columns in table
  2089.    ###We are trying (example with N=5):
  2090.    ###create table crash_q (a integer ,a0 integer,a1 integer,a2 integer,a3 integer,a4 integer)
  2091.    ### 4096:FAIL 819:OK 2457:OK 3276:OK 3686:FAIL 3358:OK 3522:FAIL 3391:OK 3456:FAIL 3404:FAIL 3394:OK 3399:FAIL 3395:OK 3397:OK 3398:FAIL
  2092. max_conditions=85660            # OR and AND in WHERE
  2093.    ###We are trying (example with N=5):
  2094.    ###select a from crash_me where a=1 and b='a'  or a=0 and b='0' or a=1 and b='1' or a=2 and b='2' or a=3 and b='3' or a=4 and b='4'
  2095.    ### 27592:OK 41389:OK 48287:FAIL 42769:OK 45528:FAIL 43321:FAIL 42880:FAIL 42791:OK 42835:FAIL 42800:OK 42817:OK 42826:OK 42830:OK 42832:FAIL 42831:FAIL
  2096. max_expressions=1450            # simple expressions
  2097.    ###We are trying (example with N=5):
  2098.    ###select 1+1+1+1+1+1
  2099.    ### 5000:FAIL 1000:OK 3000:FAIL 1400:OK 2200:FAIL 1560:FAIL 1432:OK 1496:FAIL 1445:OK 1470:FAIL 1450:OK 1460:FAIL 1452:FAIL 1451:FAIL
  2100. max_index=32                # max index
  2101.    ### max_unique_index=32 ,so max_index must be same
  2102.    ### max_unique_index=32 ,so max_index must be same
  2103.    ### max_unique_index=32 ,so max_index must be same
  2104. max_index_length=500            # index length
  2105.    ###We are trying (example with N=5):
  2106.    ###create table crash_q (q0 char(5) not null,unique (q0))
  2107.    ###insert into crash_q values('aaaaa')
  2108.    ### 4096:FAIL 819:FAIL 164:OK 491:OK 655:FAIL 524:FAIL 498:OK 511:FAIL 501:FAIL 499:OK 500:OK
  2109. max_index_name=64            # index name length
  2110.    ###We are trying (example with N=5):
  2111.    ###create index crash_qaaaaa on crash_me (a)
  2112.    ### 256:FAIL 51:OK 153:FAIL 72:FAIL 55:OK 63:FAIL 57:OK 60:FAIL 58:FAIL
  2113. max_index_part_length=255        # max index part length
  2114.    ###We are trying (example with N=5):
  2115.    ###create table crash_q (q char(5) not null,unique(q))
  2116.    ###insert into crash_q (q) values ('aaaaa')
  2117.    ###select q from crash_q
  2118. max_index_parts=16            # index parts
  2119.    ###We are trying (example with N=5):
  2120.    ###create table crash_q (q0 integer not null,q1 integer not null,q2 integer not null,q3 integer not null,q4 integer not nul...(1263)
  2121.    ###insert into crash_q (q0,q1,q2,q3,q4,q5,q6,q7,q8,q9,q10,q11,q12,q13,q14,q15,q16,q17,q18,q19,q20,q21,q22,q23,q24,q25,q26,q...(284)
  2122.    ###select q0 from crash_q
  2123.    ### 32:FAIL 7:OK 19:FAIL 10:OK 14:OK 16:FAIL 15:OK
  2124. max_index_varchar_part_length=255    # index varchar part length
  2125.    ###We are trying (example with N=5):
  2126.    ###create table crash_q (q varchar(5) not null,unique(q))
  2127.    ###insert into crash_q (q) values ('aaaaa')
  2128.    ###select q from crash_q
  2129. max_row_length=65534            # max table row length (without blobs)
  2130.    ###We are trying (example with N=5):
  2131.    ###create table crash_q  (q0 char(5) not null)
  2132.    ###insert into crash_q  values ('aaaaa')
  2133.    ### 433245:FAIL 86649:FAIL 17330:OK 51989:OK 69319:FAIL 55455:OK 62387:OK 65853:FAIL 63080:OK 64466:OK 65159:OK 65506:OK 65679:FAIL 65541:FAIL 65513:OK 65527:OK 65534:OK 65537:FAIL 65535:FAIL
  2134. max_row_length_with_null=65502        # table row length with nulls (without blobs)
  2135.    ###We are trying (example with N=5):
  2136.    ###create table crash_q  (q0 char(5) )
  2137.    ###insert into crash_q  values ('aaaaa')
  2138.    ### 65534:FAIL 13107:OK 39320:OK 52427:OK 58980:OK 62257:OK 63895:OK 64714:OK 65124:OK 65329:OK 65431:OK 65482:OK 65508:FAIL 65487:OK 65497:OK 65502:OK 65505:FAIL 65503:FAIL
  2139. max_select_alias_name=+512        # select alias name length
  2140.    ###We are trying (example with N=5):
  2141.    ###select b as aaaaa from crash_me
  2142. max_stack_expression=1450        # stacked expressions
  2143.    ###We are trying (example with N=5):
  2144.    ###select 1+(1+(1+(1+(1+(1)))))
  2145.    ### 1000:OK 1500:FAIL 1100:OK 1300:OK 1400:OK 1450:OK 1475:FAIL 1455:FAIL 1451:FAIL
  2146. max_table_alias_name=+512        # table alias name length
  2147.    ###We are trying (example with N=5):
  2148.    ###select aaaaa.b from crash_me aaaaa
  2149. max_table_name=64            # table name length
  2150.    ###We are trying (example with N=5):
  2151.    ###create table crash_qaaaaa (q integer)
  2152.    ###insert into crash_qaaaaa values(1)
  2153.    ###select * from crash_qaaaaa
  2154.    ### 256:FAIL 51:OK 153:FAIL 72:FAIL 55:OK 63:FAIL 57:OK 60:FAIL 58:FAIL
  2155. max_text_size=1048543            # max text or blob size
  2156.    ###We are trying (example with N=5):
  2157.    ###create table crash_q (q mediumtext)
  2158.    ###insert into crash_q values ('aaaaa')
  2159.    ###select * from crash_q
  2160.    ### 524272:OK 786408:OK 917476:OK 983010:OK 1015777:OK 1032161:OK 1040353:OK 1044449:OK 1046497:OK 1047521:OK 1048033:OK 1048289:OK 1048417:OK 1048481:OK 1048513:OK 1048529:OK 1048537:OK 1048541:OK 1048543:OK 1048544:FAIL
  2161. max_unique_index=32            # unique indexes
  2162.    ###We are trying (example with N=5):
  2163.    ###create table crash_q (q integer,q1 integer not null,unique (q1),q2 integer not null,unique (q2),q3 integer not null,uniq...(72)
  2164.    ###insert into crash_q (q,q1,q2,q3,q4,q5) values (1,1,1,1,1,1)
  2165.    ###select q from crash_q
  2166.    ### 32:OK 48:FAIL 35:FAIL 33:FAIL
  2167. max_varchar_size=255            # max varchar() size
  2168.    ###We are trying (example with N=5):
  2169.    ###create table crash_q (q varchar(5))
  2170.    ###insert into crash_q values ('aaaaa')
  2171.    ###select * from crash_q
  2172.    ### 524287:FAIL 104858:FAIL 20972:FAIL 4195:FAIL 839:FAIL 168:OK 503:FAIL 235:OK 369:FAIL 262:FAIL 241:OK 251:OK 256:FAIL 252:OK 254:OK 255:OK
  2173. minus=no                # minus
  2174.    ###< select * from crash_me minus select * from crash_me3
  2175.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me3' at line 1
  2176.    ###
  2177.    ###As far as some queries didnt return OK, result is NO
  2178. minus_incompat=no            # minus (incompatible lists)
  2179.    ###< select * from crash_me minus select * from crash_me2
  2180.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select * from crash_me2' at line 1
  2181.    ###
  2182.    ###As far as some queries didnt return OK, result is NO
  2183. minus_neg=yes                # Calculate 1--1
  2184.    ###
  2185.    ###<select a--1 from crash_me
  2186.    ###>2
  2187. multi_drop=yes                # many tables to drop table
  2188.    ###< create table crash_q (a int)
  2189.    ###> OK
  2190.    ###< create table crash_q2 (a int)
  2191.    ###> OK
  2192.    ###< drop table crash_q,crash_q2 
  2193.    ###> OK
  2194.    ###
  2195.    ###As far as all queries returned OK, result is YES
  2196. multi_null_in_unique=yes        # null in unique index
  2197.    ###< create table crash_q (q integer, x integer,unique (q)) 
  2198.    ###> OK
  2199.    ###< insert into crash_q(x) values(1)
  2200.    ###> OK
  2201.    ###< insert into crash_q(x) values(2)
  2202.    ###> OK
  2203.    ###< drop table crash_q 
  2204.    ###> OK
  2205.    ###
  2206.    ###As far as all queries returned OK, result is YES
  2207. multi_strings=yes            # Multiple line strings
  2208.    ###
  2209.    ###<select a from crash_me where b < 'a'
  2210.    ###'b'
  2211.    ###>1
  2212. multi_table_delete=yes            # DELETE FROM table1,table2...
  2213.    ###< create table crash_q (a integer,b char(10))
  2214.    ###> OK
  2215.    ###< insert into crash_q values(1,'c')
  2216.    ###> OK
  2217.    ###< delete crash_q.* from crash_q,crash_me where crash_q.a=crash_me.a
  2218.    ###> OK
  2219.    ###< drop table crash_q 
  2220.    ###> OK
  2221.    ###
  2222.    ###As far as all queries returned OK, result is YES
  2223. multi_table_update=yes            # Update with many tables
  2224.    ###< create table crash_q (a integer,b char(10))
  2225.    ###> OK
  2226.    ###< insert into crash_q values(1,'c')
  2227.    ###> OK
  2228.    ###< update crash_q left join crash_me on crash_q.a=crash_me.a set crash_q.b=crash_me.b
  2229.    ###> OK
  2230.    ###
  2231.    ###<select b from crash_q
  2232.    ###>a
  2233.    ###
  2234.    ###< drop table crash_q 
  2235.    ###> OK
  2236. natural_join=yes            # natural join
  2237.    ###< select * from crash_me natural join crash_me3
  2238.    ###> OK
  2239.    ###
  2240.    ###As far as all queries returned OK, result is YES
  2241. natural_join_incompat=yes        # natural join (incompatible lists)
  2242.    ###< select c1 from crash_me natural join crash_me2
  2243.    ###> OK
  2244.    ###
  2245.    ###As far as all queries returned OK, result is YES
  2246. natural_left_outer_join=yes        # natural left outer join
  2247.    ###< select c1 from crash_me natural left join crash_me2
  2248.    ###> OK
  2249.    ###
  2250.    ###As far as all queries returned OK, result is YES
  2251. no_primary_key=yes            # Tables without primary key
  2252.    ###< create table crash_me (a integer not null,b char(10) not null)
  2253.    ###> OK
  2254.    ###< insert into crash_me (a,b) values (1,'a')
  2255.    ###> OK
  2256.    ###< create table crash_me (a integer not null,b char(10) not null)
  2257.    ###> OK
  2258.    ###< insert into crash_me (a,b) values (1,'a')
  2259.    ###> OK
  2260.    ###< create table crash_me (a integer not null,b char(10) not null)
  2261.    ###> OK
  2262.    ###< insert into crash_me (a,b) values (1,'a')
  2263.    ###> OK
  2264. not_id_between=no            # NOT ID BETWEEN interprets as ID NOT BETWEEN
  2265.    ###< create table crash_me_b (i int)
  2266.    ###> OK
  2267.    ###< insert into crash_me_b values(2)
  2268.    ###> OK
  2269.    ###< insert into crash_me_b values(5)
  2270.    ###> OK
  2271.    ###
  2272.    ###<select i from crash_me_b where not i between 1 and 3
  2273.    ###> didn't return any result:
  2274.    ###
  2275.    ###< drop table crash_me_b
  2276.    ###> OK
  2277.    ###< create table crash_me_b (i int)
  2278.    ###> OK
  2279.    ###< insert into crash_me_b values(2)
  2280.    ###> OK
  2281.    ###< insert into crash_me_b values(5)
  2282.    ###> OK
  2283.    ###
  2284.    ###<select i from crash_me_b where not i between 1 and 3
  2285.    ###> didn't return any result:
  2286.    ###
  2287.    ###< drop table crash_me_b
  2288.    ###> OK
  2289.    ###< create table crash_me_b (i int)
  2290.    ###> OK
  2291.    ###< insert into crash_me_b values(2)
  2292.    ###> OK
  2293.    ###< insert into crash_me_b values(5)
  2294.    ###> OK
  2295.    ###
  2296.    ###<select i from crash_me_b where not i between 1 and 3
  2297.    ###> didn't return any result:
  2298.    ###
  2299.    ###< drop table crash_me_b
  2300.    ###> OK
  2301. null_concat_expr=yes            # Is concat('a',NULL) = NULL
  2302.    ###
  2303.    ###<select concat('a',NULL) 
  2304.    ###>
  2305. null_in_index=yes            # null in index
  2306.    ###< create table crash_q (a char(10),index (a)) 
  2307.    ###> OK
  2308.    ###< insert into crash_q values (NULL)
  2309.    ###> OK
  2310.    ###
  2311.    ###<select * from crash_q
  2312.    ###>
  2313.    ###
  2314.    ###< drop table crash_q 
  2315.    ###> OK
  2316. null_in_unique=yes            # null in unique index
  2317.    ###< create table crash_q (q integer,unique (q)) 
  2318.    ###> OK
  2319.    ###< insert into crash_q (q) values(NULL)
  2320.    ###> OK
  2321.    ###< insert into crash_q (q) values(NULL)
  2322.    ###> OK
  2323.    ###< drop table crash_q 
  2324.    ###> OK
  2325.    ###
  2326.    ###As far as all queries returned OK, result is YES
  2327. null_num_expr=yes            # Is 1+NULL = NULL
  2328.    ###
  2329.    ###<select 1+NULL 
  2330.    ###>
  2331. nulls_in_unique=yes            # null combination in unique index
  2332.    ###< create table crash_q (q integer,q1 integer,unique (q,q1)) 
  2333.    ###> OK
  2334.    ###< insert into crash_q (q,q1) values(1,NULL)
  2335.    ###> OK
  2336.    ###< insert into crash_q (q,q1) values(1,NULL)
  2337.    ###> OK
  2338.    ###< drop table crash_q 
  2339.    ###> OK
  2340.    ###
  2341.    ###As far as all queries returned OK, result is YES
  2342. odbc_left_outer_join=yes        # left outer join odbc style
  2343.    ###< select crash_me.a from { oj crash_me left outer join crash_me2 ON crash_me.a=crash_me2.a }
  2344.    ###> OK
  2345.    ###
  2346.    ###As far as all queries returned OK, result is YES
  2347. operating_system=Linux 2.4.20-64GB-SMP i686    # crash-me tested on
  2348. order_by=yes                # Order by
  2349.    ###< select a from crash_me order by a
  2350.    ###> OK
  2351.    ###
  2352.    ###As far as all queries returned OK, result is YES
  2353. order_by_alias=yes            # Order by alias
  2354.    ###< select a as ab from crash_me order by ab
  2355.    ###> OK
  2356.    ###
  2357.    ###As far as all queries returned OK, result is YES
  2358. order_by_function=yes            # Order by function
  2359.    ###< select a from crash_me order by a+1
  2360.    ###> OK
  2361.    ###
  2362.    ###As far as all queries returned OK, result is YES
  2363. order_by_position=yes            # Order by position
  2364.    ###< select a from crash_me order by 1
  2365.    ###> OK
  2366.    ###
  2367.    ###As far as all queries returned OK, result is YES
  2368. order_on_unused=yes            # Order by on unused column
  2369.    ###< select b from crash_me order by a
  2370.    ###> OK
  2371.    ###
  2372.    ###As far as all queries returned OK, result is YES
  2373. position_of_null=first            # Where is null values in sorted recordset
  2374.    ###< insert into crash_me_n (i) values(1)
  2375.    ###> OK
  2376.    ###< insert into crash_me_n values(2,2)
  2377.    ###> OK
  2378.    ###< insert into crash_me_n values(3,3)
  2379.    ###> OK
  2380.    ###< insert into crash_me_n values(4,4)
  2381.    ###> OK
  2382.    ###< insert into crash_me_n (i) values(5)
  2383.    ###> OK
  2384.    ###
  2385.    ###< select r from crash_me_n order by r 
  2386.    ###> 
  2387.    ###> 
  2388.    ###> 2
  2389.    ###> 3
  2390.    ###> 4
  2391.    ###< insert into crash_me_n (i) values(1)
  2392.    ###> OK
  2393.    ###< insert into crash_me_n values(2,2)
  2394.    ###> OK
  2395.    ###< insert into crash_me_n values(3,3)
  2396.    ###> OK
  2397.    ###< insert into crash_me_n values(4,4)
  2398.    ###> OK
  2399.    ###< insert into crash_me_n (i) values(5)
  2400.    ###> OK
  2401.    ###< insert into crash_me_n (i) values(1)
  2402.    ###> OK
  2403.    ###< insert into crash_me_n values(2,2)
  2404.    ###> OK
  2405.    ###< insert into crash_me_n values(3,3)
  2406.    ###> OK
  2407.    ###< insert into crash_me_n values(4,4)
  2408.    ###> OK
  2409.    ###< insert into crash_me_n (i) values(5)
  2410.    ###> OK
  2411. position_of_null_desc=last        # Where is null values in sorted recordset (DESC)
  2412.    ###< select r from crash_me_n order by r  desc
  2413.    ###> 4
  2414.    ###> 3
  2415.    ###> 2
  2416.    ###> 
  2417.    ###> 
  2418. primary_key_in_create=yes        # primary key in create table
  2419.    ###< create table crash_q (q integer not null,primary key (q))
  2420.    ###> OK
  2421.    ###< drop table crash_q 
  2422.    ###> OK
  2423.    ###
  2424.    ###As far as all queries returned OK, result is YES
  2425. psm_functions=no            # PSM functions (ANSI SQL)
  2426.    ###< create table crash_q (a int)
  2427.    ###> OK
  2428.    ###< create function crash_func(in a1 int, in b1 int) returns int language sql deterministic contains sql  begin return a1 * b1; end
  2429.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(in a1 int, in b1 int) returns int language sql deterministic c
  2430.    ###< insert into crash_q values(crash_func(2,4))
  2431.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(2,4))' at line 1
  2432.    ###< select a,crash_func(a,2) from crash_q
  2433.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(a,2) from crash_q' at line 1
  2434.    ###< drop function crash_func cascade
  2435.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'cascade' at line 1
  2436.    ###< drop table crash_q 
  2437.    ###> OK
  2438.    ###
  2439.    ###As far as some queries didnt return OK, result is NO
  2440. psm_modules=no                # PSM modules (ANSI SQL)
  2441.    ###< create table crash_q (a int,b int)
  2442.    ###> OK
  2443.    ###< create module crash_m declare procedure crash_proc(in a1 int, in b1 int) language sql modifies sql data begin declare c1 int; set c1 = a1 + b1; insert into crash_q(a,b) values (a1,c1); end; declare procedure crash_proc2(INOUT a int, in b int) contains sql set a = b + 10; end module
  2444.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'module crash_m declare procedure crash_proc(in a1 int, in b1 in
  2445.    ###< call crash_proc(1,10)
  2446.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'call crash_proc(1,10)' at line 1
  2447.    ###< drop module crash_m cascade
  2448.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'module crash_m cascade' at line 1
  2449.    ###< drop table crash_q cascade 
  2450.    ###> OK
  2451.    ###
  2452.    ###As far as some queries didnt return OK, result is NO
  2453. psm_procedures=no            # PSM procedures (ANSI SQL)
  2454.    ###< create table crash_q (a int,b int)
  2455.    ###> OK
  2456.    ###< create procedure crash_proc(in a1 int, in b1 int) language sql modifies sql data begin declare c1 int; set c1 = a1 + b1; insert into crash_q(a,b) values (a1,c1); end
  2457.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'procedure crash_proc(in a1 int, in b1 int) language sql modifie
  2458.    ###< call crash_proc(1,10)
  2459.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'call crash_proc(1,10)' at line 1
  2460.    ###< drop procedure crash_proc
  2461.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'procedure crash_proc' at line 1
  2462.    ###< drop table crash_q 
  2463.    ###> OK
  2464.    ###
  2465.    ###As far as some queries didnt return OK, result is NO
  2466. psm_trigger=no                # Triggers (ANSI SQL)
  2467.    ###< create table crash_q (a int ,b int)
  2468.    ###> OK
  2469.    ###< create trigger crash_trigger after insert on crash_q referencing new table as new_a when (localtime > time '18:00:00') begin atomic end
  2470.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'trigger crash_trigger after insert on crash_q referencing new t
  2471.    ###< insert into crash_q values(1,2)
  2472.    ###> OK
  2473.    ###< drop trigger crash_trigger
  2474.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'trigger crash_trigger' at line 1
  2475.    ###< drop table crash_q 
  2476.    ###> OK
  2477.    ###
  2478.    ###As far as some queries didnt return OK, result is NO
  2479. query_size=1048574            # query size
  2480. quote_ident_with_"=error        # " as identifier quote (ANSI SQL)
  2481.    ###
  2482.    ###<select "A" from crash_me
  2483.    ###>A
  2484.    ###We expected '1' but got 'A' 
  2485. quote_ident_with_[=no            # [] as identifier quote
  2486.    ###
  2487.    ###<select [A] from crash_me
  2488.    ###> execute failed:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '[A] from crash_me' at line 1
  2489. quote_ident_with_`=yes            # ` as identifier quote
  2490.    ###
  2491.    ###<select `A` from crash_me
  2492.    ###>1
  2493. quote_ident_with_dbl_"=no        # Double "" in identifiers as "
  2494.    ###< create table crash_me1 ("abc""d" integer)
  2495.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '"abc""d" integer)' at line 1
  2496.    ###< drop table crash_me1
  2497.    ###> execute error:Unknown table 'crash_me1'
  2498.    ###
  2499.    ###As far as some queries didnt return OK, result is NO
  2500. quote_with_"=yes            # Allows ' and " as string markers
  2501.    ###< select a from crash_me where b<"c"
  2502.    ###> OK
  2503.    ###
  2504.    ###As far as all queries returned OK, result is YES
  2505. remember_end_space=no            # Remembers end space in char()
  2506.    ###< create table crash_q (a char(10))
  2507.    ###> OK
  2508.    ###< insert into crash_q values('hello ')
  2509.    ###> OK
  2510.    ###
  2511.    ###<select a from crash_q where a = 'hello '
  2512.    ###>hello
  2513.    ###We expected 'hello ' but got 'hello' 
  2514.    ###
  2515.    ###< drop table crash_q 
  2516.    ###> OK
  2517. remember_end_space_varchar=no        # Remembers end space in varchar()
  2518.    ###< create table crash_q (a varchar(10))
  2519.    ###> OK
  2520.    ###< insert into crash_q values('hello ')
  2521.    ###> OK
  2522.    ###
  2523.    ###<select a from crash_q where a = 'hello '
  2524.    ###>hello
  2525.    ###We expected 'hello ' but got 'hello' 
  2526.    ###
  2527.    ###< drop table crash_q 
  2528.    ###> OK
  2529. rename_table=yes            # rename table
  2530.    ###< create table crash_q (a integer, b integer,c1 CHAR(10))
  2531.    ###> OK
  2532.    ###< rename table crash_q to crash_q1
  2533.    ###> OK
  2534.    ###< drop table crash_q1 
  2535.    ###> OK
  2536.    ###
  2537.    ###As far as all queries returned OK, result is YES
  2538. repeat_string_size=1047552        # return string size from function
  2539.    ###We are trying (example with N=5):
  2540.    ###select repeat('a',5) 
  2541.    ### 4000000:FAIL 800000:OK 2400000:FAIL 1120000:FAIL 864000:OK 992000:OK 1056000:FAIL 1004800:OK 1030400:OK 1043200:OK 1049600:FAIL 1044480:OK 1047040:OK 1048320:FAIL 1047296:OK 1047808:FAIL 1047399:OK 1047603:FAIL 1047440:OK 1047521:OK 1047562:FAIL 1047529:OK 1047545:OK 1047553:FAIL 1047547:OK 1047550:OK 1047551:OK 1047552:OK
  2542. reserved_word_ansi-92/99_absolute=no    # Keyword ABSOLUTE
  2543.    ###< create table crash_me10 (ABSOLUTE int not null)
  2544.    ###> OK
  2545.    ###< drop table crash_me10 
  2546.    ###> OK
  2547.    ###
  2548.    ###As far as all queries returned OK, result is NO
  2549. reserved_word_ansi-92/99_action=no    # Keyword ACTION
  2550.    ###< create table crash_me10 (ACTION int not null)
  2551.    ###> OK
  2552.    ###< drop table crash_me10 
  2553.    ###> OK
  2554.    ###
  2555.    ###As far as all queries returned OK, result is NO
  2556. reserved_word_ansi-92/99_add=yes    # Keyword ADD
  2557.    ###< create table crash_me10 (ADD int not null)
  2558.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ADD int not null)' at line 1
  2559.    ###< drop table crash_me10 
  2560.    ###> execute error:Unknown table 'crash_me10'
  2561.    ###
  2562.    ###As far as some queries didnt return OK, result is YES
  2563. reserved_word_ansi-92/99_after=no    # Keyword AFTER
  2564.    ###< create table crash_me10 (AFTER int not null)
  2565.    ###> OK
  2566.    ###< drop table crash_me10 
  2567.    ###> OK
  2568.    ###
  2569.    ###As far as all queries returned OK, result is NO
  2570. reserved_word_ansi-92/99_alias=no    # Keyword ALIAS
  2571.    ###< create table crash_me10 (ALIAS int not null)
  2572.    ###> OK
  2573.    ###< drop table crash_me10 
  2574.    ###> OK
  2575.    ###
  2576.    ###As far as all queries returned OK, result is NO
  2577. reserved_word_ansi-92/99_all=yes    # Keyword ALL
  2578.    ###< create table crash_me10 (ALL int not null)
  2579.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ALL int not null)' at line 1
  2580.    ###< drop table crash_me10 
  2581.    ###> execute error:Unknown table 'crash_me10'
  2582.    ###
  2583.    ###As far as some queries didnt return OK, result is YES
  2584. reserved_word_ansi-92/99_allocate=no    # Keyword ALLOCATE
  2585.    ###< create table crash_me10 (ALLOCATE int not null)
  2586.    ###> OK
  2587.    ###< drop table crash_me10 
  2588.    ###> OK
  2589.    ###
  2590.    ###As far as all queries returned OK, result is NO
  2591. reserved_word_ansi-92/99_alter=yes    # Keyword ALTER
  2592.    ###< create table crash_me10 (ALTER int not null)
  2593.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ALTER int not null)' at line 1
  2594.    ###< drop table crash_me10 
  2595.    ###> execute error:Unknown table 'crash_me10'
  2596.    ###
  2597.    ###As far as some queries didnt return OK, result is YES
  2598. reserved_word_ansi-92/99_and=yes    # Keyword AND
  2599.    ###< create table crash_me10 (AND int not null)
  2600.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND int not null)' at line 1
  2601.    ###< drop table crash_me10 
  2602.    ###> execute error:Unknown table 'crash_me10'
  2603.    ###
  2604.    ###As far as some queries didnt return OK, result is YES
  2605. reserved_word_ansi-92/99_any=no        # Keyword ANY
  2606.    ###< create table crash_me10 (ANY int not null)
  2607.    ###> OK
  2608.    ###< drop table crash_me10 
  2609.    ###> OK
  2610.    ###
  2611.    ###As far as all queries returned OK, result is NO
  2612. reserved_word_ansi-92/99_are=no        # Keyword ARE
  2613.    ###< create table crash_me10 (ARE int not null)
  2614.    ###> OK
  2615.    ###< drop table crash_me10 
  2616.    ###> OK
  2617.    ###
  2618.    ###As far as all queries returned OK, result is NO
  2619. reserved_word_ansi-92/99_as=yes        # Keyword AS
  2620.    ###< create table crash_me10 (AS int not null)
  2621.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS int not null)' at line 1
  2622.    ###< drop table crash_me10 
  2623.    ###> execute error:Unknown table 'crash_me10'
  2624.    ###
  2625.    ###As far as some queries didnt return OK, result is YES
  2626. reserved_word_ansi-92/99_asc=yes    # Keyword ASC
  2627.    ###< create table crash_me10 (ASC int not null)
  2628.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ASC int not null)' at line 1
  2629.    ###< drop table crash_me10 
  2630.    ###> execute error:Unknown table 'crash_me10'
  2631.    ###
  2632.    ###As far as some queries didnt return OK, result is YES
  2633. reserved_word_ansi-92/99_assertion=no    # Keyword ASSERTION
  2634.    ###< create table crash_me10 (ASSERTION int not null)
  2635.    ###> OK
  2636.    ###< drop table crash_me10 
  2637.    ###> OK
  2638.    ###
  2639.    ###As far as all queries returned OK, result is NO
  2640. reserved_word_ansi-92/99_at=no        # Keyword AT
  2641.    ###< create table crash_me10 (AT int not null)
  2642.    ###> OK
  2643.    ###< drop table crash_me10 
  2644.    ###> OK
  2645.    ###
  2646.    ###As far as all queries returned OK, result is NO
  2647. reserved_word_ansi-92/99_authorization=no    # Keyword AUTHORIZATION
  2648.    ###< create table crash_me10 (AUTHORIZATION int not null)
  2649.    ###> OK
  2650.    ###< drop table crash_me10 
  2651.    ###> OK
  2652.    ###
  2653.    ###As far as all queries returned OK, result is NO
  2654. reserved_word_ansi-92/99_before=no    # Keyword BEFORE
  2655.    ###< create table crash_me10 (BEFORE int not null)
  2656.    ###> OK
  2657.    ###< drop table crash_me10 
  2658.    ###> OK
  2659.    ###
  2660.    ###As far as all queries returned OK, result is NO
  2661. reserved_word_ansi-92/99_begin=no    # Keyword BEGIN
  2662.    ###< create table crash_me10 (BEGIN int not null)
  2663.    ###> OK
  2664.    ###< drop table crash_me10 
  2665.    ###> OK
  2666.    ###
  2667.    ###As far as all queries returned OK, result is NO
  2668. reserved_word_ansi-92/99_bit=no        # Keyword BIT
  2669.    ###< create table crash_me10 (BIT int not null)
  2670.    ###> OK
  2671.    ###< drop table crash_me10 
  2672.    ###> OK
  2673.    ###
  2674.    ###As far as all queries returned OK, result is NO
  2675. reserved_word_ansi-92/99_boolean=no    # Keyword BOOLEAN
  2676.    ###< create table crash_me10 (BOOLEAN int not null)
  2677.    ###> OK
  2678.    ###< drop table crash_me10 
  2679.    ###> OK
  2680.    ###
  2681.    ###As far as all queries returned OK, result is NO
  2682. reserved_word_ansi-92/99_both=yes    # Keyword BOTH
  2683.    ###< create table crash_me10 (BOTH int not null)
  2684.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BOTH int not null)' at line 1
  2685.    ###< drop table crash_me10 
  2686.    ###> execute error:Unknown table 'crash_me10'
  2687.    ###
  2688.    ###As far as some queries didnt return OK, result is YES
  2689. reserved_word_ansi-92/99_breadth=no    # Keyword BREADTH
  2690.    ###< create table crash_me10 (BREADTH int not null)
  2691.    ###> OK
  2692.    ###< drop table crash_me10 
  2693.    ###> OK
  2694.    ###
  2695.    ###As far as all queries returned OK, result is NO
  2696. reserved_word_ansi-92/99_by=yes        # Keyword BY
  2697.    ###< create table crash_me10 (BY int not null)
  2698.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BY int not null)' at line 1
  2699.    ###< drop table crash_me10 
  2700.    ###> execute error:Unknown table 'crash_me10'
  2701.    ###
  2702.    ###As far as some queries didnt return OK, result is YES
  2703. reserved_word_ansi-92/99_call=no    # Keyword CALL
  2704.    ###< create table crash_me10 (CALL int not null)
  2705.    ###> OK
  2706.    ###< drop table crash_me10 
  2707.    ###> OK
  2708.    ###
  2709.    ###As far as all queries returned OK, result is NO
  2710. reserved_word_ansi-92/99_cascade=yes    # Keyword CASCADE
  2711.    ###< create table crash_me10 (CASCADE int not null)
  2712.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CASCADE int not null)' at line 1
  2713.    ###< drop table crash_me10 
  2714.    ###> execute error:Unknown table 'crash_me10'
  2715.    ###
  2716.    ###As far as some queries didnt return OK, result is YES
  2717. reserved_word_ansi-92/99_cascaded=no    # Keyword CASCADED
  2718.    ###< create table crash_me10 (CASCADED int not null)
  2719.    ###> OK
  2720.    ###< drop table crash_me10 
  2721.    ###> OK
  2722.    ###
  2723.    ###As far as all queries returned OK, result is NO
  2724. reserved_word_ansi-92/99_case=yes    # Keyword CASE
  2725.    ###< create table crash_me10 (CASE int not null)
  2726.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CASE int not null)' at line 1
  2727.    ###< drop table crash_me10 
  2728.    ###> execute error:Unknown table 'crash_me10'
  2729.    ###
  2730.    ###As far as some queries didnt return OK, result is YES
  2731. reserved_word_ansi-92/99_cast=no    # Keyword CAST
  2732.    ###< create table crash_me10 (CAST int not null)
  2733.    ###> OK
  2734.    ###< drop table crash_me10 
  2735.    ###> OK
  2736.    ###
  2737.    ###As far as all queries returned OK, result is NO
  2738. reserved_word_ansi-92/99_catalog=no    # Keyword CATALOG
  2739.    ###< create table crash_me10 (CATALOG int not null)
  2740.    ###> OK
  2741.    ###< drop table crash_me10 
  2742.    ###> OK
  2743.    ###
  2744.    ###As far as all queries returned OK, result is NO
  2745. reserved_word_ansi-92/99_char=yes    # Keyword CHAR
  2746.    ###< create table crash_me10 (CHAR int not null)
  2747.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CHAR int not null)' at line 1
  2748.    ###< drop table crash_me10 
  2749.    ###> execute error:Unknown table 'crash_me10'
  2750.    ###
  2751.    ###As far as some queries didnt return OK, result is YES
  2752. reserved_word_ansi-92/99_character=yes    # Keyword CHARACTER
  2753.    ###< create table crash_me10 (CHARACTER int not null)
  2754.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CHARACTER int not null)' at line 1
  2755.    ###< drop table crash_me10 
  2756.    ###> execute error:Unknown table 'crash_me10'
  2757.    ###
  2758.    ###As far as some queries didnt return OK, result is YES
  2759. reserved_word_ansi-92/99_check=yes    # Keyword CHECK
  2760.    ###< create table crash_me10 (CHECK int not null)
  2761.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
  2762.    ###< drop table crash_me10 
  2763.    ###> execute error:Unknown table 'crash_me10'
  2764.    ###
  2765.    ###As far as some queries didnt return OK, result is YES
  2766. reserved_word_ansi-92/99_close=no    # Keyword CLOSE
  2767.    ###< create table crash_me10 (CLOSE int not null)
  2768.    ###> OK
  2769.    ###< drop table crash_me10 
  2770.    ###> OK
  2771.    ###
  2772.    ###As far as all queries returned OK, result is NO
  2773. reserved_word_ansi-92/99_collate=no    # Keyword COLLATE
  2774.    ###< create table crash_me10 (COLLATE int not null)
  2775.    ###> OK
  2776.    ###< drop table crash_me10 
  2777.    ###> OK
  2778.    ###
  2779.    ###As far as all queries returned OK, result is NO
  2780. reserved_word_ansi-92/99_collation=no    # Keyword COLLATION
  2781.    ###< create table crash_me10 (COLLATION int not null)
  2782.    ###> OK
  2783.    ###< drop table crash_me10 
  2784.    ###> OK
  2785.    ###
  2786.    ###As far as all queries returned OK, result is NO
  2787. reserved_word_ansi-92/99_column=yes    # Keyword COLUMN
  2788.    ###< create table crash_me10 (COLUMN int not null)
  2789.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'COLUMN int not null)' at line 1
  2790.    ###< drop table crash_me10 
  2791.    ###> execute error:Unknown table 'crash_me10'
  2792.    ###
  2793.    ###As far as some queries didnt return OK, result is YES
  2794. reserved_word_ansi-92/99_commit=no    # Keyword COMMIT
  2795.    ###< create table crash_me10 (COMMIT int not null)
  2796.    ###> OK
  2797.    ###< drop table crash_me10 
  2798.    ###> OK
  2799.    ###
  2800.    ###As far as all queries returned OK, result is NO
  2801. reserved_word_ansi-92/99_completion=no    # Keyword COMPLETION
  2802.    ###< create table crash_me10 (COMPLETION int not null)
  2803.    ###> OK
  2804.    ###< drop table crash_me10 
  2805.    ###> OK
  2806.    ###
  2807.    ###As far as all queries returned OK, result is NO
  2808. reserved_word_ansi-92/99_connect=no    # Keyword CONNECT
  2809.    ###< create table crash_me10 (CONNECT int not null)
  2810.    ###> OK
  2811.    ###< drop table crash_me10 
  2812.    ###> OK
  2813.    ###
  2814.    ###As far as all queries returned OK, result is NO
  2815. reserved_word_ansi-92/99_connection=no    # Keyword CONNECTION
  2816.    ###< create table crash_me10 (CONNECTION int not null)
  2817.    ###> OK
  2818.    ###< drop table crash_me10 
  2819.    ###> OK
  2820.    ###
  2821.    ###As far as all queries returned OK, result is NO
  2822. reserved_word_ansi-92/99_constraint=yes    # Keyword CONSTRAINT
  2823.    ###< create table crash_me10 (CONSTRAINT int not null)
  2824.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
  2825.    ###< drop table crash_me10 
  2826.    ###> execute error:Unknown table 'crash_me10'
  2827.    ###
  2828.    ###As far as some queries didnt return OK, result is YES
  2829. reserved_word_ansi-92/99_constraints=no    # Keyword CONSTRAINTS
  2830.    ###< create table crash_me10 (CONSTRAINTS int not null)
  2831.    ###> OK
  2832.    ###< drop table crash_me10 
  2833.    ###> OK
  2834.    ###
  2835.    ###As far as all queries returned OK, result is NO
  2836. reserved_word_ansi-92/99_continue=no    # Keyword CONTINUE
  2837.    ###< create table crash_me10 (CONTINUE int not null)
  2838.    ###> OK
  2839.    ###< drop table crash_me10 
  2840.    ###> OK
  2841.    ###
  2842.    ###As far as all queries returned OK, result is NO
  2843. reserved_word_ansi-92/99_corresponding=no    # Keyword CORRESPONDING
  2844.    ###< create table crash_me10 (CORRESPONDING int not null)
  2845.    ###> OK
  2846.    ###< drop table crash_me10 
  2847.    ###> OK
  2848.    ###
  2849.    ###As far as all queries returned OK, result is NO
  2850. reserved_word_ansi-92/99_create=yes    # Keyword CREATE
  2851.    ###< create table crash_me10 (CREATE int not null)
  2852.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE int not null)' at line 1
  2853.    ###< drop table crash_me10 
  2854.    ###> execute error:Unknown table 'crash_me10'
  2855.    ###
  2856.    ###As far as some queries didnt return OK, result is YES
  2857. reserved_word_ansi-92/99_cross=yes    # Keyword CROSS
  2858.    ###< create table crash_me10 (CROSS int not null)
  2859.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CROSS int not null)' at line 1
  2860.    ###< drop table crash_me10 
  2861.    ###> execute error:Unknown table 'crash_me10'
  2862.    ###
  2863.    ###As far as some queries didnt return OK, result is YES
  2864. reserved_word_ansi-92/99_current=no    # Keyword CURRENT
  2865.    ###< create table crash_me10 (CURRENT int not null)
  2866.    ###> OK
  2867.    ###< drop table crash_me10 
  2868.    ###> OK
  2869.    ###
  2870.    ###As far as all queries returned OK, result is NO
  2871. reserved_word_ansi-92/99_current_date=yes    # Keyword CURRENT_DATE
  2872.    ###< create table crash_me10 (CURRENT_DATE int not null)
  2873.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURRENT_DATE int not null)' at line 1
  2874.    ###< drop table crash_me10 
  2875.    ###> execute error:Unknown table 'crash_me10'
  2876.    ###
  2877.    ###As far as some queries didnt return OK, result is YES
  2878. reserved_word_ansi-92/99_current_time=yes    # Keyword CURRENT_TIME
  2879.    ###< create table crash_me10 (CURRENT_TIME int not null)
  2880.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURRENT_TIME int not null)' at line 1
  2881.    ###< drop table crash_me10 
  2882.    ###> execute error:Unknown table 'crash_me10'
  2883.    ###
  2884.    ###As far as some queries didnt return OK, result is YES
  2885. reserved_word_ansi-92/99_current_timestamp=yes    # Keyword CURRENT_TIMESTAMP
  2886.    ###< create table crash_me10 (CURRENT_TIMESTAMP int not null)
  2887.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURRENT_TIMESTAMP int not null)' at line 1
  2888.    ###< drop table crash_me10 
  2889.    ###> execute error:Unknown table 'crash_me10'
  2890.    ###
  2891.    ###As far as some queries didnt return OK, result is YES
  2892. reserved_word_ansi-92/99_current_user=no    # Keyword CURRENT_USER
  2893.    ###< create table crash_me10 (CURRENT_USER int not null)
  2894.    ###> OK
  2895.    ###< drop table crash_me10 
  2896.    ###> OK
  2897.    ###
  2898.    ###As far as all queries returned OK, result is NO
  2899. reserved_word_ansi-92/99_cursor=no    # Keyword CURSOR
  2900.    ###< create table crash_me10 (CURSOR int not null)
  2901.    ###> OK
  2902.    ###< drop table crash_me10 
  2903.    ###> OK
  2904.    ###
  2905.    ###As far as all queries returned OK, result is NO
  2906. reserved_word_ansi-92/99_cycle=no    # Keyword CYCLE
  2907.    ###< create table crash_me10 (CYCLE int not null)
  2908.    ###> OK
  2909.    ###< drop table crash_me10 
  2910.    ###> OK
  2911.    ###
  2912.    ###As far as all queries returned OK, result is NO
  2913. reserved_word_ansi-92/99_data=no    # Keyword DATA
  2914.    ###< create table crash_me10 (DATA int not null)
  2915.    ###> OK
  2916.    ###< drop table crash_me10 
  2917.    ###> OK
  2918.    ###
  2919.    ###As far as all queries returned OK, result is NO
  2920. reserved_word_ansi-92/99_date=no    # Keyword DATE
  2921.    ###< create table crash_me10 (DATE int not null)
  2922.    ###> OK
  2923.    ###< drop table crash_me10 
  2924.    ###> OK
  2925.    ###
  2926.    ###As far as all queries returned OK, result is NO
  2927. reserved_word_ansi-92/99_day=no        # Keyword DAY
  2928.    ###< create table crash_me10 (DAY int not null)
  2929.    ###> OK
  2930.    ###< drop table crash_me10 
  2931.    ###> OK
  2932.    ###
  2933.    ###As far as all queries returned OK, result is NO
  2934. reserved_word_ansi-92/99_deallocate=no    # Keyword DEALLOCATE
  2935.    ###< create table crash_me10 (DEALLOCATE int not null)
  2936.    ###> OK
  2937.    ###< drop table crash_me10 
  2938.    ###> OK
  2939.    ###
  2940.    ###As far as all queries returned OK, result is NO
  2941. reserved_word_ansi-92/99_dec=yes    # Keyword DEC
  2942.    ###< create table crash_me10 (DEC int not null)
  2943.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEC int not null)' at line 1
  2944.    ###< drop table crash_me10 
  2945.    ###> execute error:Unknown table 'crash_me10'
  2946.    ###
  2947.    ###As far as some queries didnt return OK, result is YES
  2948. reserved_word_ansi-92/99_decimal=yes    # Keyword DECIMAL
  2949.    ###< create table crash_me10 (DECIMAL int not null)
  2950.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DECIMAL int not null)' at line 1
  2951.    ###< drop table crash_me10 
  2952.    ###> execute error:Unknown table 'crash_me10'
  2953.    ###
  2954.    ###As far as some queries didnt return OK, result is YES
  2955. reserved_word_ansi-92/99_declare=no    # Keyword DECLARE
  2956.    ###< create table crash_me10 (DECLARE int not null)
  2957.    ###> OK
  2958.    ###< drop table crash_me10 
  2959.    ###> OK
  2960.    ###
  2961.    ###As far as all queries returned OK, result is NO
  2962. reserved_word_ansi-92/99_default=yes    # Keyword DEFAULT
  2963.    ###< create table crash_me10 (DEFAULT int not null)
  2964.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT int not null)' at line 1
  2965.    ###< drop table crash_me10 
  2966.    ###> execute error:Unknown table 'crash_me10'
  2967.    ###
  2968.    ###As far as some queries didnt return OK, result is YES
  2969. reserved_word_ansi-92/99_deferrable=no    # Keyword DEFERRABLE
  2970.    ###< create table crash_me10 (DEFERRABLE int not null)
  2971.    ###> OK
  2972.    ###< drop table crash_me10 
  2973.    ###> OK
  2974.    ###
  2975.    ###As far as all queries returned OK, result is NO
  2976. reserved_word_ansi-92/99_deferred=no    # Keyword DEFERRED
  2977.    ###< create table crash_me10 (DEFERRED int not null)
  2978.    ###> OK
  2979.    ###< drop table crash_me10 
  2980.    ###> OK
  2981.    ###
  2982.    ###As far as all queries returned OK, result is NO
  2983. reserved_word_ansi-92/99_delete=yes    # Keyword DELETE
  2984.    ###< create table crash_me10 (DELETE int not null)
  2985.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELETE int not null)' at line 1
  2986.    ###< drop table crash_me10 
  2987.    ###> execute error:Unknown table 'crash_me10'
  2988.    ###
  2989.    ###As far as some queries didnt return OK, result is YES
  2990. reserved_word_ansi-92/99_depth=no    # Keyword DEPTH
  2991.    ###< create table crash_me10 (DEPTH int not null)
  2992.    ###> OK
  2993.    ###< drop table crash_me10 
  2994.    ###> OK
  2995.    ###
  2996.    ###As far as all queries returned OK, result is NO
  2997. reserved_word_ansi-92/99_desc=yes    # Keyword DESC
  2998.    ###< create table crash_me10 (DESC int not null)
  2999.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DESC int not null)' at line 1
  3000.    ###< drop table crash_me10 
  3001.    ###> execute error:Unknown table 'crash_me10'
  3002.    ###
  3003.    ###As far as some queries didnt return OK, result is YES
  3004. reserved_word_ansi-92/99_describe=yes    # Keyword DESCRIBE
  3005.    ###< create table crash_me10 (DESCRIBE int not null)
  3006.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DESCRIBE int not null)' at line 1
  3007.    ###< drop table crash_me10 
  3008.    ###> execute error:Unknown table 'crash_me10'
  3009.    ###
  3010.    ###As far as some queries didnt return OK, result is YES
  3011. reserved_word_ansi-92/99_descriptor=no    # Keyword DESCRIPTOR
  3012.    ###< create table crash_me10 (DESCRIPTOR int not null)
  3013.    ###> OK
  3014.    ###< drop table crash_me10 
  3015.    ###> OK
  3016.    ###
  3017.    ###As far as all queries returned OK, result is NO
  3018. reserved_word_ansi-92/99_diagnostics=no    # Keyword DIAGNOSTICS
  3019.    ###< create table crash_me10 (DIAGNOSTICS int not null)
  3020.    ###> OK
  3021.    ###< drop table crash_me10 
  3022.    ###> OK
  3023.    ###
  3024.    ###As far as all queries returned OK, result is NO
  3025. reserved_word_ansi-92/99_dictionary=no    # Keyword DICTIONARY
  3026.    ###< create table crash_me10 (DICTIONARY int not null)
  3027.    ###> OK
  3028.    ###< drop table crash_me10 
  3029.    ###> OK
  3030.    ###
  3031.    ###As far as all queries returned OK, result is NO
  3032. reserved_word_ansi-92/99_disconnect=no    # Keyword DISCONNECT
  3033.    ###< create table crash_me10 (DISCONNECT int not null)
  3034.    ###> OK
  3035.    ###< drop table crash_me10 
  3036.    ###> OK
  3037.    ###
  3038.    ###As far as all queries returned OK, result is NO
  3039. reserved_word_ansi-92/99_distinct=yes    # Keyword DISTINCT
  3040.    ###< create table crash_me10 (DISTINCT int not null)
  3041.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DISTINCT int not null)' at line 1
  3042.    ###< drop table crash_me10 
  3043.    ###> execute error:Unknown table 'crash_me10'
  3044.    ###
  3045.    ###As far as some queries didnt return OK, result is YES
  3046. reserved_word_ansi-92/99_domain=no    # Keyword DOMAIN
  3047.    ###< create table crash_me10 (DOMAIN int not null)
  3048.    ###> OK
  3049.    ###< drop table crash_me10 
  3050.    ###> OK
  3051.    ###
  3052.    ###As far as all queries returned OK, result is NO
  3053. reserved_word_ansi-92/99_double=yes    # Keyword DOUBLE
  3054.    ###< create table crash_me10 (DOUBLE int not null)
  3055.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DOUBLE int not null)' at line 1
  3056.    ###< drop table crash_me10 
  3057.    ###> execute error:Unknown table 'crash_me10'
  3058.    ###
  3059.    ###As far as some queries didnt return OK, result is YES
  3060. reserved_word_ansi-92/99_drop=yes    # Keyword DROP
  3061.    ###< create table crash_me10 (DROP int not null)
  3062.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DROP int not null)' at line 1
  3063.    ###< drop table crash_me10 
  3064.    ###> execute error:Unknown table 'crash_me10'
  3065.    ###
  3066.    ###As far as some queries didnt return OK, result is YES
  3067. reserved_word_ansi-92/99_each=no    # Keyword EACH
  3068.    ###< create table crash_me10 (EACH int not null)
  3069.    ###> OK
  3070.    ###< drop table crash_me10 
  3071.    ###> OK
  3072.    ###
  3073.    ###As far as all queries returned OK, result is NO
  3074. reserved_word_ansi-92/99_else=yes    # Keyword ELSE
  3075.    ###< create table crash_me10 (ELSE int not null)
  3076.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ELSE int not null)' at line 1
  3077.    ###< drop table crash_me10 
  3078.    ###> execute error:Unknown table 'crash_me10'
  3079.    ###
  3080.    ###As far as some queries didnt return OK, result is YES
  3081. reserved_word_ansi-92/99_elseif=no    # Keyword ELSEIF
  3082.    ###< create table crash_me10 (ELSEIF int not null)
  3083.    ###> OK
  3084.    ###< drop table crash_me10 
  3085.    ###> OK
  3086.    ###
  3087.    ###As far as all queries returned OK, result is NO
  3088. reserved_word_ansi-92/99_end=no        # Keyword END
  3089.    ###< create table crash_me10 (END int not null)
  3090.    ###> OK
  3091.    ###< drop table crash_me10 
  3092.    ###> OK
  3093.    ###
  3094.    ###As far as all queries returned OK, result is NO
  3095. reserved_word_ansi-92/99_end-exec=yes    # Keyword END-EXEC
  3096.    ###< create table crash_me10 (END-EXEC int not null)
  3097.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '-EXEC int not null)' at line 1
  3098.    ###< drop table crash_me10 
  3099.    ###> execute error:Unknown table 'crash_me10'
  3100.    ###
  3101.    ###As far as some queries didnt return OK, result is YES
  3102. reserved_word_ansi-92/99_equals=no    # Keyword EQUALS
  3103.    ###< create table crash_me10 (EQUALS int not null)
  3104.    ###> OK
  3105.    ###< drop table crash_me10 
  3106.    ###> OK
  3107.    ###
  3108.    ###As far as all queries returned OK, result is NO
  3109. reserved_word_ansi-92/99_escape=no    # Keyword ESCAPE
  3110.    ###< create table crash_me10 (ESCAPE int not null)
  3111.    ###> OK
  3112.    ###< drop table crash_me10 
  3113.    ###> OK
  3114.    ###
  3115.    ###As far as all queries returned OK, result is NO
  3116. reserved_word_ansi-92/99_except=no    # Keyword EXCEPT
  3117.    ###< create table crash_me10 (EXCEPT int not null)
  3118.    ###> OK
  3119.    ###< drop table crash_me10 
  3120.    ###> OK
  3121.    ###
  3122.    ###As far as all queries returned OK, result is NO
  3123. reserved_word_ansi-92/99_exception=no    # Keyword EXCEPTION
  3124.    ###< create table crash_me10 (EXCEPTION int not null)
  3125.    ###> OK
  3126.    ###< drop table crash_me10 
  3127.    ###> OK
  3128.    ###
  3129.    ###As far as all queries returned OK, result is NO
  3130. reserved_word_ansi-92/99_exec=no    # Keyword EXEC
  3131.    ###< create table crash_me10 (EXEC int not null)
  3132.    ###> OK
  3133.    ###< drop table crash_me10 
  3134.    ###> OK
  3135.    ###
  3136.    ###As far as all queries returned OK, result is NO
  3137. reserved_word_ansi-92/99_execute=no    # Keyword EXECUTE
  3138.    ###< create table crash_me10 (EXECUTE int not null)
  3139.    ###> OK
  3140.    ###< drop table crash_me10 
  3141.    ###> OK
  3142.    ###
  3143.    ###As far as all queries returned OK, result is NO
  3144. reserved_word_ansi-92/99_external=no    # Keyword EXTERNAL
  3145.    ###< create table crash_me10 (EXTERNAL int not null)
  3146.    ###> OK
  3147.    ###< drop table crash_me10 
  3148.    ###> OK
  3149.    ###
  3150.    ###As far as all queries returned OK, result is NO
  3151. reserved_word_ansi-92/99_false=no    # Keyword FALSE
  3152.    ###< create table crash_me10 (FALSE int not null)
  3153.    ###> OK
  3154.    ###< drop table crash_me10 
  3155.    ###> OK
  3156.    ###
  3157.    ###As far as all queries returned OK, result is NO
  3158. reserved_word_ansi-92/99_fetch=no    # Keyword FETCH
  3159.    ###< create table crash_me10 (FETCH int not null)
  3160.    ###> OK
  3161.    ###< drop table crash_me10 
  3162.    ###> OK
  3163.    ###
  3164.    ###As far as all queries returned OK, result is NO
  3165. reserved_word_ansi-92/99_first=no    # Keyword FIRST
  3166.    ###< create table crash_me10 (FIRST int not null)
  3167.    ###> OK
  3168.    ###< drop table crash_me10 
  3169.    ###> OK
  3170.    ###
  3171.    ###As far as all queries returned OK, result is NO
  3172. reserved_word_ansi-92/99_float=yes    # Keyword FLOAT
  3173.    ###< create table crash_me10 (FLOAT int not null)
  3174.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FLOAT int not null)' at line 1
  3175.    ###< drop table crash_me10 
  3176.    ###> execute error:Unknown table 'crash_me10'
  3177.    ###
  3178.    ###As far as some queries didnt return OK, result is YES
  3179. reserved_word_ansi-92/99_for=yes    # Keyword FOR
  3180.    ###< create table crash_me10 (FOR int not null)
  3181.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FOR int not null)' at line 1
  3182.    ###< drop table crash_me10 
  3183.    ###> execute error:Unknown table 'crash_me10'
  3184.    ###
  3185.    ###As far as some queries didnt return OK, result is YES
  3186. reserved_word_ansi-92/99_foreign=yes    # Keyword FOREIGN
  3187.    ###< create table crash_me10 (FOREIGN int not null)
  3188.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
  3189.    ###< drop table crash_me10 
  3190.    ###> execute error:Unknown table 'crash_me10'
  3191.    ###
  3192.    ###As far as some queries didnt return OK, result is YES
  3193. reserved_word_ansi-92/99_found=no    # Keyword FOUND
  3194.    ###< create table crash_me10 (FOUND int not null)
  3195.    ###> OK
  3196.    ###< drop table crash_me10 
  3197.    ###> OK
  3198.    ###
  3199.    ###As far as all queries returned OK, result is NO
  3200. reserved_word_ansi-92/99_from=yes    # Keyword FROM
  3201.    ###< create table crash_me10 (FROM int not null)
  3202.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM int not null)' at line 1
  3203.    ###< drop table crash_me10 
  3204.    ###> execute error:Unknown table 'crash_me10'
  3205.    ###
  3206.    ###As far as some queries didnt return OK, result is YES
  3207. reserved_word_ansi-92/99_full=no    # Keyword FULL
  3208.    ###< create table crash_me10 (FULL int not null)
  3209.    ###> OK
  3210.    ###< drop table crash_me10 
  3211.    ###> OK
  3212.    ###
  3213.    ###As far as all queries returned OK, result is NO
  3214. reserved_word_ansi-92/99_general=no    # Keyword GENERAL
  3215.    ###< create table crash_me10 (GENERAL int not null)
  3216.    ###> OK
  3217.    ###< drop table crash_me10 
  3218.    ###> OK
  3219.    ###
  3220.    ###As far as all queries returned OK, result is NO
  3221. reserved_word_ansi-92/99_get=no        # Keyword GET
  3222.    ###< create table crash_me10 (GET int not null)
  3223.    ###> OK
  3224.    ###< drop table crash_me10 
  3225.    ###> OK
  3226.    ###
  3227.    ###As far as all queries returned OK, result is NO
  3228. reserved_word_ansi-92/99_global=no    # Keyword GLOBAL
  3229.    ###< create table crash_me10 (GLOBAL int not null)
  3230.    ###> OK
  3231.    ###< drop table crash_me10 
  3232.    ###> OK
  3233.    ###
  3234.    ###As far as all queries returned OK, result is NO
  3235. reserved_word_ansi-92/99_go=no        # Keyword GO
  3236.    ###< create table crash_me10 (GO int not null)
  3237.    ###> OK
  3238.    ###< drop table crash_me10 
  3239.    ###> OK
  3240.    ###
  3241.    ###As far as all queries returned OK, result is NO
  3242. reserved_word_ansi-92/99_goto=no    # Keyword GOTO
  3243.    ###< create table crash_me10 (GOTO int not null)
  3244.    ###> OK
  3245.    ###< drop table crash_me10 
  3246.    ###> OK
  3247.    ###
  3248.    ###As far as all queries returned OK, result is NO
  3249. reserved_word_ansi-92/99_grant=yes    # Keyword GRANT
  3250.    ###< create table crash_me10 (GRANT int not null)
  3251.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'GRANT int not null)' at line 1
  3252.    ###< drop table crash_me10 
  3253.    ###> execute error:Unknown table 'crash_me10'
  3254.    ###
  3255.    ###As far as some queries didnt return OK, result is YES
  3256. reserved_word_ansi-92/99_group=yes    # Keyword GROUP
  3257.    ###< create table crash_me10 (GROUP int not null)
  3258.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'GROUP int not null)' at line 1
  3259.    ###< drop table crash_me10 
  3260.    ###> execute error:Unknown table 'crash_me10'
  3261.    ###
  3262.    ###As far as some queries didnt return OK, result is YES
  3263. reserved_word_ansi-92/99_having=yes    # Keyword HAVING
  3264.    ###< create table crash_me10 (HAVING int not null)
  3265.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'HAVING int not null)' at line 1
  3266.    ###< drop table crash_me10 
  3267.    ###> execute error:Unknown table 'crash_me10'
  3268.    ###
  3269.    ###As far as some queries didnt return OK, result is YES
  3270. reserved_word_ansi-92/99_hour=no    # Keyword HOUR
  3271.    ###< create table crash_me10 (HOUR int not null)
  3272.    ###> OK
  3273.    ###< drop table crash_me10 
  3274.    ###> OK
  3275.    ###
  3276.    ###As far as all queries returned OK, result is NO
  3277. reserved_word_ansi-92/99_identity=no    # Keyword IDENTITY
  3278.    ###< create table crash_me10 (IDENTITY int not null)
  3279.    ###> OK
  3280.    ###< drop table crash_me10 
  3281.    ###> OK
  3282.    ###
  3283.    ###As far as all queries returned OK, result is NO
  3284. reserved_word_ansi-92/99_if=yes        # Keyword IF
  3285.    ###< create table crash_me10 (IF int not null)
  3286.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'IF int not null)' at line 1
  3287.    ###< drop table crash_me10 
  3288.    ###> execute error:Unknown table 'crash_me10'
  3289.    ###
  3290.    ###As far as some queries didnt return OK, result is YES
  3291. reserved_word_ansi-92/99_ignore=yes    # Keyword IGNORE
  3292.    ###< create table crash_me10 (IGNORE int not null)
  3293.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'IGNORE int not null)' at line 1
  3294.    ###< drop table crash_me10 
  3295.    ###> execute error:Unknown table 'crash_me10'
  3296.    ###
  3297.    ###As far as some queries didnt return OK, result is YES
  3298. reserved_word_ansi-92/99_immediate=no    # Keyword IMMEDIATE
  3299.    ###< create table crash_me10 (IMMEDIATE int not null)
  3300.    ###> OK
  3301.    ###< drop table crash_me10 
  3302.    ###> OK
  3303.    ###
  3304.    ###As far as all queries returned OK, result is NO
  3305. reserved_word_ansi-92/99_in=yes        # Keyword IN
  3306.    ###< create table crash_me10 (IN int not null)
  3307.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'IN int not null)' at line 1
  3308.    ###< drop table crash_me10 
  3309.    ###> execute error:Unknown table 'crash_me10'
  3310.    ###
  3311.    ###As far as some queries didnt return OK, result is YES
  3312. reserved_word_ansi-92/99_indicator=no    # Keyword INDICATOR
  3313.    ###< create table crash_me10 (INDICATOR int not null)
  3314.    ###> OK
  3315.    ###< drop table crash_me10 
  3316.    ###> OK
  3317.    ###
  3318.    ###As far as all queries returned OK, result is NO
  3319. reserved_word_ansi-92/99_initially=no    # Keyword INITIALLY
  3320.    ###< create table crash_me10 (INITIALLY int not null)
  3321.    ###> OK
  3322.    ###< drop table crash_me10 
  3323.    ###> OK
  3324.    ###
  3325.    ###As far as all queries returned OK, result is NO
  3326. reserved_word_ansi-92/99_inner=yes    # Keyword INNER
  3327.    ###< create table crash_me10 (INNER int not null)
  3328.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INNER int not null)' at line 1
  3329.    ###< drop table crash_me10 
  3330.    ###> execute error:Unknown table 'crash_me10'
  3331.    ###
  3332.    ###As far as some queries didnt return OK, result is YES
  3333. reserved_word_ansi-92/99_input=no    # Keyword INPUT
  3334.    ###< create table crash_me10 (INPUT int not null)
  3335.    ###> OK
  3336.    ###< drop table crash_me10 
  3337.    ###> OK
  3338.    ###
  3339.    ###As far as all queries returned OK, result is NO
  3340. reserved_word_ansi-92/99_insert=yes    # Keyword INSERT
  3341.    ###< create table crash_me10 (INSERT int not null)
  3342.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INSERT int not null)' at line 1
  3343.    ###< drop table crash_me10 
  3344.    ###> execute error:Unknown table 'crash_me10'
  3345.    ###
  3346.    ###As far as some queries didnt return OK, result is YES
  3347. reserved_word_ansi-92/99_int=yes    # Keyword INT
  3348.    ###< create table crash_me10 (INT int not null)
  3349.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INT int not null)' at line 1
  3350.    ###< drop table crash_me10 
  3351.    ###> execute error:Unknown table 'crash_me10'
  3352.    ###
  3353.    ###As far as some queries didnt return OK, result is YES
  3354. reserved_word_ansi-92/99_integer=yes    # Keyword INTEGER
  3355.    ###< create table crash_me10 (INTEGER int not null)
  3356.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INTEGER int not null)' at line 1
  3357.    ###< drop table crash_me10 
  3358.    ###> execute error:Unknown table 'crash_me10'
  3359.    ###
  3360.    ###As far as some queries didnt return OK, result is YES
  3361. reserved_word_ansi-92/99_intersect=no    # Keyword INTERSECT
  3362.    ###< create table crash_me10 (INTERSECT int not null)
  3363.    ###> OK
  3364.    ###< drop table crash_me10 
  3365.    ###> OK
  3366.    ###
  3367.    ###As far as all queries returned OK, result is NO
  3368. reserved_word_ansi-92/99_interval=yes    # Keyword INTERVAL
  3369.    ###< create table crash_me10 (INTERVAL int not null)
  3370.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INTERVAL int not null)' at line 1
  3371.    ###< drop table crash_me10 
  3372.    ###> execute error:Unknown table 'crash_me10'
  3373.    ###
  3374.    ###As far as some queries didnt return OK, result is YES
  3375. reserved_word_ansi-92/99_into=yes    # Keyword INTO
  3376.    ###< create table crash_me10 (INTO int not null)
  3377.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INTO int not null)' at line 1
  3378.    ###< drop table crash_me10 
  3379.    ###> execute error:Unknown table 'crash_me10'
  3380.    ###
  3381.    ###As far as some queries didnt return OK, result is YES
  3382. reserved_word_ansi-92/99_is=yes        # Keyword IS
  3383.    ###< create table crash_me10 (IS int not null)
  3384.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS int not null)' at line 1
  3385.    ###< drop table crash_me10 
  3386.    ###> execute error:Unknown table 'crash_me10'
  3387.    ###
  3388.    ###As far as some queries didnt return OK, result is YES
  3389. reserved_word_ansi-92/99_isolation=no    # Keyword ISOLATION
  3390.    ###< create table crash_me10 (ISOLATION int not null)
  3391.    ###> OK
  3392.    ###< drop table crash_me10 
  3393.    ###> OK
  3394.    ###
  3395.    ###As far as all queries returned OK, result is NO
  3396. reserved_word_ansi-92/99_join=yes    # Keyword JOIN
  3397.    ###< create table crash_me10 (JOIN int not null)
  3398.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'JOIN int not null)' at line 1
  3399.    ###< drop table crash_me10 
  3400.    ###> execute error:Unknown table 'crash_me10'
  3401.    ###
  3402.    ###As far as some queries didnt return OK, result is YES
  3403. reserved_word_ansi-92/99_key=yes    # Keyword KEY
  3404.    ###< create table crash_me10 (KEY int not null)
  3405.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
  3406.    ###< drop table crash_me10 
  3407.    ###> execute error:Unknown table 'crash_me10'
  3408.    ###
  3409.    ###As far as some queries didnt return OK, result is YES
  3410. reserved_word_ansi-92/99_language=no    # Keyword LANGUAGE
  3411.    ###< create table crash_me10 (LANGUAGE int not null)
  3412.    ###> OK
  3413.    ###< drop table crash_me10 
  3414.    ###> OK
  3415.    ###
  3416.    ###As far as all queries returned OK, result is NO
  3417. reserved_word_ansi-92/99_last=no    # Keyword LAST
  3418.    ###< create table crash_me10 (LAST int not null)
  3419.    ###> OK
  3420.    ###< drop table crash_me10 
  3421.    ###> OK
  3422.    ###
  3423.    ###As far as all queries returned OK, result is NO
  3424. reserved_word_ansi-92/99_leading=yes    # Keyword LEADING
  3425.    ###< create table crash_me10 (LEADING int not null)
  3426.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LEADING int not null)' at line 1
  3427.    ###< drop table crash_me10 
  3428.    ###> execute error:Unknown table 'crash_me10'
  3429.    ###
  3430.    ###As far as some queries didnt return OK, result is YES
  3431. reserved_word_ansi-92/99_leave=no    # Keyword LEAVE
  3432.    ###< create table crash_me10 (LEAVE int not null)
  3433.    ###> OK
  3434.    ###< drop table crash_me10 
  3435.    ###> OK
  3436.    ###
  3437.    ###As far as all queries returned OK, result is NO
  3438. reserved_word_ansi-92/99_left=yes    # Keyword LEFT
  3439.    ###< create table crash_me10 (LEFT int not null)
  3440.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LEFT int not null)' at line 1
  3441.    ###< drop table crash_me10 
  3442.    ###> execute error:Unknown table 'crash_me10'
  3443.    ###
  3444.    ###As far as some queries didnt return OK, result is YES
  3445. reserved_word_ansi-92/99_less=no    # Keyword LESS
  3446.    ###< create table crash_me10 (LESS int not null)
  3447.    ###> OK
  3448.    ###< drop table crash_me10 
  3449.    ###> OK
  3450.    ###
  3451.    ###As far as all queries returned OK, result is NO
  3452. reserved_word_ansi-92/99_level=no    # Keyword LEVEL
  3453.    ###< create table crash_me10 (LEVEL int not null)
  3454.    ###> OK
  3455.    ###< drop table crash_me10 
  3456.    ###> OK
  3457.    ###
  3458.    ###As far as all queries returned OK, result is NO
  3459. reserved_word_ansi-92/99_like=yes    # Keyword LIKE
  3460.    ###< create table crash_me10 (LIKE int not null)
  3461.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIKE int not null)' at line 1
  3462.    ###< drop table crash_me10 
  3463.    ###> execute error:Unknown table 'crash_me10'
  3464.    ###
  3465.    ###As far as some queries didnt return OK, result is YES
  3466. reserved_word_ansi-92/99_limit=yes    # Keyword LIMIT
  3467.    ###< create table crash_me10 (LIMIT int not null)
  3468.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT int not null)' at line 1
  3469.    ###< drop table crash_me10 
  3470.    ###> execute error:Unknown table 'crash_me10'
  3471.    ###
  3472.    ###As far as some queries didnt return OK, result is YES
  3473. reserved_word_ansi-92/99_local=no    # Keyword LOCAL
  3474.    ###< create table crash_me10 (LOCAL int not null)
  3475.    ###> OK
  3476.    ###< drop table crash_me10 
  3477.    ###> OK
  3478.    ###
  3479.    ###As far as all queries returned OK, result is NO
  3480. reserved_word_ansi-92/99_loop=no    # Keyword LOOP
  3481.    ###< create table crash_me10 (LOOP int not null)
  3482.    ###> OK
  3483.    ###< drop table crash_me10 
  3484.    ###> OK
  3485.    ###
  3486.    ###As far as all queries returned OK, result is NO
  3487. reserved_word_ansi-92/99_match=yes    # Keyword MATCH
  3488.    ###< create table crash_me10 (MATCH int not null)
  3489.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MATCH int not null)' at line 1
  3490.    ###< drop table crash_me10 
  3491.    ###> execute error:Unknown table 'crash_me10'
  3492.    ###
  3493.    ###As far as some queries didnt return OK, result is YES
  3494. reserved_word_ansi-92/99_minute=no    # Keyword MINUTE
  3495.    ###< create table crash_me10 (MINUTE int not null)
  3496.    ###> OK
  3497.    ###< drop table crash_me10 
  3498.    ###> OK
  3499.    ###
  3500.    ###As far as all queries returned OK, result is NO
  3501. reserved_word_ansi-92/99_modify=no    # Keyword MODIFY
  3502.    ###< create table crash_me10 (MODIFY int not null)
  3503.    ###> OK
  3504.    ###< drop table crash_me10 
  3505.    ###> OK
  3506.    ###
  3507.    ###As far as all queries returned OK, result is NO
  3508. reserved_word_ansi-92/99_module=no    # Keyword MODULE
  3509.    ###< create table crash_me10 (MODULE int not null)
  3510.    ###> OK
  3511.    ###< drop table crash_me10 
  3512.    ###> OK
  3513.    ###
  3514.    ###As far as all queries returned OK, result is NO
  3515. reserved_word_ansi-92/99_month=no    # Keyword MONTH
  3516.    ###< create table crash_me10 (MONTH int not null)
  3517.    ###> OK
  3518.    ###< drop table crash_me10 
  3519.    ###> OK
  3520.    ###
  3521.    ###As far as all queries returned OK, result is NO
  3522. reserved_word_ansi-92/99_names=no    # Keyword NAMES
  3523.    ###< create table crash_me10 (NAMES int not null)
  3524.    ###> OK
  3525.    ###< drop table crash_me10 
  3526.    ###> OK
  3527.    ###
  3528.    ###As far as all queries returned OK, result is NO
  3529. reserved_word_ansi-92/99_national=no    # Keyword NATIONAL
  3530.    ###< create table crash_me10 (NATIONAL int not null)
  3531.    ###> OK
  3532.    ###< drop table crash_me10 
  3533.    ###> OK
  3534.    ###
  3535.    ###As far as all queries returned OK, result is NO
  3536. reserved_word_ansi-92/99_natural=yes    # Keyword NATURAL
  3537.    ###< create table crash_me10 (NATURAL int not null)
  3538.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'NATURAL int not null)' at line 1
  3539.    ###< drop table crash_me10 
  3540.    ###> execute error:Unknown table 'crash_me10'
  3541.    ###
  3542.    ###As far as some queries didnt return OK, result is YES
  3543. reserved_word_ansi-92/99_nchar=no    # Keyword NCHAR
  3544.    ###< create table crash_me10 (NCHAR int not null)
  3545.    ###> OK
  3546.    ###< drop table crash_me10 
  3547.    ###> OK
  3548.    ###
  3549.    ###As far as all queries returned OK, result is NO
  3550. reserved_word_ansi-92/99_new=no        # Keyword NEW
  3551.    ###< create table crash_me10 (NEW int not null)
  3552.    ###> OK
  3553.    ###< drop table crash_me10 
  3554.    ###> OK
  3555.    ###
  3556.    ###As far as all queries returned OK, result is NO
  3557. reserved_word_ansi-92/99_next=no    # Keyword NEXT
  3558.    ###< create table crash_me10 (NEXT int not null)
  3559.    ###> OK
  3560.    ###< drop table crash_me10 
  3561.    ###> OK
  3562.    ###
  3563.    ###As far as all queries returned OK, result is NO
  3564. reserved_word_ansi-92/99_no=no        # Keyword NO
  3565.    ###< create table crash_me10 (NO int not null)
  3566.    ###> OK
  3567.    ###< drop table crash_me10 
  3568.    ###> OK
  3569.    ###
  3570.    ###As far as all queries returned OK, result is NO
  3571. reserved_word_ansi-92/99_none=no    # Keyword NONE
  3572.    ###< create table crash_me10 (NONE int not null)
  3573.    ###> OK
  3574.    ###< drop table crash_me10 
  3575.    ###> OK
  3576.    ###
  3577.    ###As far as all queries returned OK, result is NO
  3578. reserved_word_ansi-92/99_not=yes    # Keyword NOT
  3579.    ###< create table crash_me10 (NOT int not null)
  3580.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'NOT int not null)' at line 1
  3581.    ###< drop table crash_me10 
  3582.    ###> execute error:Unknown table 'crash_me10'
  3583.    ###
  3584.    ###As far as some queries didnt return OK, result is YES
  3585. reserved_word_ansi-92/99_null=yes    # Keyword NULL
  3586.    ###< create table crash_me10 (NULL int not null)
  3587.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL int not null)' at line 1
  3588.    ###< drop table crash_me10 
  3589.    ###> execute error:Unknown table 'crash_me10'
  3590.    ###
  3591.    ###As far as some queries didnt return OK, result is YES
  3592. reserved_word_ansi-92/99_numeric=yes    # Keyword NUMERIC
  3593.    ###< create table crash_me10 (NUMERIC int not null)
  3594.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'NUMERIC int not null)' at line 1
  3595.    ###< drop table crash_me10 
  3596.    ###> execute error:Unknown table 'crash_me10'
  3597.    ###
  3598.    ###As far as some queries didnt return OK, result is YES
  3599. reserved_word_ansi-92/99_object=no    # Keyword OBJECT
  3600.    ###< create table crash_me10 (OBJECT int not null)
  3601.    ###> OK
  3602.    ###< drop table crash_me10 
  3603.    ###> OK
  3604.    ###
  3605.    ###As far as all queries returned OK, result is NO
  3606. reserved_word_ansi-92/99_of=no        # Keyword OF
  3607.    ###< create table crash_me10 (OF int not null)
  3608.    ###> OK
  3609.    ###< drop table crash_me10 
  3610.    ###> OK
  3611.    ###
  3612.    ###As far as all queries returned OK, result is NO
  3613. reserved_word_ansi-92/99_off=no        # Keyword OFF
  3614.    ###< create table crash_me10 (OFF int not null)
  3615.    ###> OK
  3616.    ###< drop table crash_me10 
  3617.    ###> OK
  3618.    ###
  3619.    ###As far as all queries returned OK, result is NO
  3620. reserved_word_ansi-92/99_old=no        # Keyword OLD
  3621.    ###< create table crash_me10 (OLD int not null)
  3622.    ###> OK
  3623.    ###< drop table crash_me10 
  3624.    ###> OK
  3625.    ###
  3626.    ###As far as all queries returned OK, result is NO
  3627. reserved_word_ansi-92/99_on=yes        # Keyword ON
  3628.    ###< create table crash_me10 (ON int not null)
  3629.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ON int not null)' at line 1
  3630.    ###< drop table crash_me10 
  3631.    ###> execute error:Unknown table 'crash_me10'
  3632.    ###
  3633.    ###As far as some queries didnt return OK, result is YES
  3634. reserved_word_ansi-92/99_only=no    # Keyword ONLY
  3635.    ###< create table crash_me10 (ONLY int not null)
  3636.    ###> OK
  3637.    ###< drop table crash_me10 
  3638.    ###> OK
  3639.    ###
  3640.    ###As far as all queries returned OK, result is NO
  3641. reserved_word_ansi-92/99_open=no    # Keyword OPEN
  3642.    ###< create table crash_me10 (OPEN int not null)
  3643.    ###> OK
  3644.    ###< drop table crash_me10 
  3645.    ###> OK
  3646.    ###
  3647.    ###As far as all queries returned OK, result is NO
  3648. reserved_word_ansi-92/99_operation=no    # Keyword OPERATION
  3649.    ###< create table crash_me10 (OPERATION int not null)
  3650.    ###> OK
  3651.    ###< drop table crash_me10 
  3652.    ###> OK
  3653.    ###
  3654.    ###As far as all queries returned OK, result is NO
  3655. reserved_word_ansi-92/99_option=yes    # Keyword OPTION
  3656.    ###< create table crash_me10 (OPTION int not null)
  3657.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION int not null)' at line 1
  3658.    ###< drop table crash_me10 
  3659.    ###> execute error:Unknown table 'crash_me10'
  3660.    ###
  3661.    ###As far as some queries didnt return OK, result is YES
  3662. reserved_word_ansi-92/99_or=yes        # Keyword OR
  3663.    ###< create table crash_me10 (OR int not null)
  3664.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OR int not null)' at line 1
  3665.    ###< drop table crash_me10 
  3666.    ###> execute error:Unknown table 'crash_me10'
  3667.    ###
  3668.    ###As far as some queries didnt return OK, result is YES
  3669. reserved_word_ansi-92/99_order=yes    # Keyword ORDER
  3670.    ###< create table crash_me10 (ORDER int not null)
  3671.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER int not null)' at line 1
  3672.    ###< drop table crash_me10 
  3673.    ###> execute error:Unknown table 'crash_me10'
  3674.    ###
  3675.    ###As far as some queries didnt return OK, result is YES
  3676. reserved_word_ansi-92/99_outer=yes    # Keyword OUTER
  3677.    ###< create table crash_me10 (OUTER int not null)
  3678.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OUTER int not null)' at line 1
  3679.    ###< drop table crash_me10 
  3680.    ###> execute error:Unknown table 'crash_me10'
  3681.    ###
  3682.    ###As far as some queries didnt return OK, result is YES
  3683. reserved_word_ansi-92/99_output=no    # Keyword OUTPUT
  3684.    ###< create table crash_me10 (OUTPUT int not null)
  3685.    ###> OK
  3686.    ###< drop table crash_me10 
  3687.    ###> OK
  3688.    ###
  3689.    ###As far as all queries returned OK, result is NO
  3690. reserved_word_ansi-92/99_pad=no        # Keyword PAD
  3691.    ###< create table crash_me10 (PAD int not null)
  3692.    ###> OK
  3693.    ###< drop table crash_me10 
  3694.    ###> OK
  3695.    ###
  3696.    ###As far as all queries returned OK, result is NO
  3697. reserved_word_ansi-92/99_parameters=no    # Keyword PARAMETERS
  3698.    ###< create table crash_me10 (PARAMETERS int not null)
  3699.    ###> OK
  3700.    ###< drop table crash_me10 
  3701.    ###> OK
  3702.    ###
  3703.    ###As far as all queries returned OK, result is NO
  3704. reserved_word_ansi-92/99_partial=yes    # Keyword PARTIAL
  3705.    ###< create table crash_me10 (PARTIAL int not null)
  3706.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'PARTIAL int not null)' at line 1
  3707.    ###< drop table crash_me10 
  3708.    ###> execute error:Unknown table 'crash_me10'
  3709.    ###
  3710.    ###As far as some queries didnt return OK, result is YES
  3711. reserved_word_ansi-92/99_precision=yes    # Keyword PRECISION
  3712.    ###< create table crash_me10 (PRECISION int not null)
  3713.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'PRECISION int not null)' at line 1
  3714.    ###< drop table crash_me10 
  3715.    ###> execute error:Unknown table 'crash_me10'
  3716.    ###
  3717.    ###As far as some queries didnt return OK, result is YES
  3718. reserved_word_ansi-92/99_preorder=no    # Keyword PREORDER
  3719.    ###< create table crash_me10 (PREORDER int not null)
  3720.    ###> OK
  3721.    ###< drop table crash_me10 
  3722.    ###> OK
  3723.    ###
  3724.    ###As far as all queries returned OK, result is NO
  3725. reserved_word_ansi-92/99_prepare=no    # Keyword PREPARE
  3726.    ###< create table crash_me10 (PREPARE int not null)
  3727.    ###> OK
  3728.    ###< drop table crash_me10 
  3729.    ###> OK
  3730.    ###
  3731.    ###As far as all queries returned OK, result is NO
  3732. reserved_word_ansi-92/99_preserve=no    # Keyword PRESERVE
  3733.    ###< create table crash_me10 (PRESERVE int not null)
  3734.    ###> OK
  3735.    ###< drop table crash_me10 
  3736.    ###> OK
  3737.    ###
  3738.    ###As far as all queries returned OK, result is NO
  3739. reserved_word_ansi-92/99_primary=yes    # Keyword PRIMARY
  3740.    ###< create table crash_me10 (PRIMARY int not null)
  3741.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
  3742.    ###< drop table crash_me10 
  3743.    ###> execute error:Unknown table 'crash_me10'
  3744.    ###
  3745.    ###As far as some queries didnt return OK, result is YES
  3746. reserved_word_ansi-92/99_prior=no    # Keyword PRIOR
  3747.    ###< create table crash_me10 (PRIOR int not null)
  3748.    ###> OK
  3749.    ###< drop table crash_me10 
  3750.    ###> OK
  3751.    ###
  3752.    ###As far as all queries returned OK, result is NO
  3753. reserved_word_ansi-92/99_privileges=yes    # Keyword PRIVILEGES
  3754.    ###< create table crash_me10 (PRIVILEGES int not null)
  3755.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'PRIVILEGES int not null)' at line 1
  3756.    ###< drop table crash_me10 
  3757.    ###> execute error:Unknown table 'crash_me10'
  3758.    ###
  3759.    ###As far as some queries didnt return OK, result is YES
  3760. reserved_word_ansi-92/99_procedure=yes    # Keyword PROCEDURE
  3761.    ###< create table crash_me10 (PROCEDURE int not null)
  3762.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'PROCEDURE int not null)' at line 1
  3763.    ###< drop table crash_me10 
  3764.    ###> execute error:Unknown table 'crash_me10'
  3765.    ###
  3766.    ###As far as some queries didnt return OK, result is YES
  3767. reserved_word_ansi-92/99_public=no    # Keyword PUBLIC
  3768.    ###< create table crash_me10 (PUBLIC int not null)
  3769.    ###> OK
  3770.    ###< drop table crash_me10 
  3771.    ###> OK
  3772.    ###
  3773.    ###As far as all queries returned OK, result is NO
  3774. reserved_word_ansi-92/99_read=yes    # Keyword READ
  3775.    ###< create table crash_me10 (READ int not null)
  3776.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'READ int not null)' at line 1
  3777.    ###< drop table crash_me10 
  3778.    ###> execute error:Unknown table 'crash_me10'
  3779.    ###
  3780.    ###As far as some queries didnt return OK, result is YES
  3781. reserved_word_ansi-92/99_real=yes    # Keyword REAL
  3782.    ###< create table crash_me10 (REAL int not null)
  3783.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REAL int not null)' at line 1
  3784.    ###< drop table crash_me10 
  3785.    ###> execute error:Unknown table 'crash_me10'
  3786.    ###
  3787.    ###As far as some queries didnt return OK, result is YES
  3788. reserved_word_ansi-92/99_recursive=no    # Keyword RECURSIVE
  3789.    ###< create table crash_me10 (RECURSIVE int not null)
  3790.    ###> OK
  3791.    ###< drop table crash_me10 
  3792.    ###> OK
  3793.    ###
  3794.    ###As far as all queries returned OK, result is NO
  3795. reserved_word_ansi-92/99_ref=no        # Keyword REF
  3796.    ###< create table crash_me10 (REF int not null)
  3797.    ###> OK
  3798.    ###< drop table crash_me10 
  3799.    ###> OK
  3800.    ###
  3801.    ###As far as all queries returned OK, result is NO
  3802. reserved_word_ansi-92/99_references=yes    # Keyword REFERENCES
  3803.    ###< create table crash_me10 (REFERENCES int not null)
  3804.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REFERENCES int not null)' at line 1
  3805.    ###< drop table crash_me10 
  3806.    ###> execute error:Unknown table 'crash_me10'
  3807.    ###
  3808.    ###As far as some queries didnt return OK, result is YES
  3809. reserved_word_ansi-92/99_referencing=no    # Keyword REFERENCING
  3810.    ###< create table crash_me10 (REFERENCING int not null)
  3811.    ###> OK
  3812.    ###< drop table crash_me10 
  3813.    ###> OK
  3814.    ###
  3815.    ###As far as all queries returned OK, result is NO
  3816. reserved_word_ansi-92/99_relative=no    # Keyword RELATIVE
  3817.    ###< create table crash_me10 (RELATIVE int not null)
  3818.    ###> OK
  3819.    ###< drop table crash_me10 
  3820.    ###> OK
  3821.    ###
  3822.    ###As far as all queries returned OK, result is NO
  3823. reserved_word_ansi-92/99_resignal=no    # Keyword RESIGNAL
  3824.    ###< create table crash_me10 (RESIGNAL int not null)
  3825.    ###> OK
  3826.    ###< drop table crash_me10 
  3827.    ###> OK
  3828.    ###
  3829.    ###As far as all queries returned OK, result is NO
  3830. reserved_word_ansi-92/99_restrict=yes    # Keyword RESTRICT
  3831.    ###< create table crash_me10 (RESTRICT int not null)
  3832.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'RESTRICT int not null)' at line 1
  3833.    ###< drop table crash_me10 
  3834.    ###> execute error:Unknown table 'crash_me10'
  3835.    ###
  3836.    ###As far as some queries didnt return OK, result is YES
  3837. reserved_word_ansi-92/99_return=no    # Keyword RETURN
  3838.    ###< create table crash_me10 (RETURN int not null)
  3839.    ###> OK
  3840.    ###< drop table crash_me10 
  3841.    ###> OK
  3842.    ###
  3843.    ###As far as all queries returned OK, result is NO
  3844. reserved_word_ansi-92/99_returns=yes    # Keyword RETURNS
  3845.    ###< create table crash_me10 (RETURNS int not null)
  3846.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'RETURNS int not null)' at line 1
  3847.    ###< drop table crash_me10 
  3848.    ###> execute error:Unknown table 'crash_me10'
  3849.    ###
  3850.    ###As far as some queries didnt return OK, result is YES
  3851. reserved_word_ansi-92/99_revoke=yes    # Keyword REVOKE
  3852.    ###< create table crash_me10 (REVOKE int not null)
  3853.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REVOKE int not null)' at line 1
  3854.    ###< drop table crash_me10 
  3855.    ###> execute error:Unknown table 'crash_me10'
  3856.    ###
  3857.    ###As far as some queries didnt return OK, result is YES
  3858. reserved_word_ansi-92/99_right=yes    # Keyword RIGHT
  3859.    ###< create table crash_me10 (RIGHT int not null)
  3860.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'RIGHT int not null)' at line 1
  3861.    ###< drop table crash_me10 
  3862.    ###> execute error:Unknown table 'crash_me10'
  3863.    ###
  3864.    ###As far as some queries didnt return OK, result is YES
  3865. reserved_word_ansi-92/99_role=no    # Keyword ROLE
  3866.    ###< create table crash_me10 (ROLE int not null)
  3867.    ###> OK
  3868.    ###< drop table crash_me10 
  3869.    ###> OK
  3870.    ###
  3871.    ###As far as all queries returned OK, result is NO
  3872. reserved_word_ansi-92/99_rollback=no    # Keyword ROLLBACK
  3873.    ###< create table crash_me10 (ROLLBACK int not null)
  3874.    ###> OK
  3875.    ###< drop table crash_me10 
  3876.    ###> OK
  3877.    ###
  3878.    ###As far as all queries returned OK, result is NO
  3879. reserved_word_ansi-92/99_routine=no    # Keyword ROUTINE
  3880.    ###< create table crash_me10 (ROUTINE int not null)
  3881.    ###> OK
  3882.    ###< drop table crash_me10 
  3883.    ###> OK
  3884.    ###
  3885.    ###As far as all queries returned OK, result is NO
  3886. reserved_word_ansi-92/99_row=no        # Keyword ROW
  3887.    ###< create table crash_me10 (ROW int not null)
  3888.    ###> OK
  3889.    ###< drop table crash_me10 
  3890.    ###> OK
  3891.    ###
  3892.    ###As far as all queries returned OK, result is NO
  3893. reserved_word_ansi-92/99_rows=no    # Keyword ROWS
  3894.    ###< create table crash_me10 (ROWS int not null)
  3895.    ###> OK
  3896.    ###< drop table crash_me10 
  3897.    ###> OK
  3898.    ###
  3899.    ###As far as all queries returned OK, result is NO
  3900. reserved_word_ansi-92/99_savepoint=no    # Keyword SAVEPOINT
  3901.    ###< create table crash_me10 (SAVEPOINT int not null)
  3902.    ###> OK
  3903.    ###< drop table crash_me10 
  3904.    ###> OK
  3905.    ###
  3906.    ###As far as all queries returned OK, result is NO
  3907. reserved_word_ansi-92/99_schema=no    # Keyword SCHEMA
  3908.    ###< create table crash_me10 (SCHEMA int not null)
  3909.    ###> OK
  3910.    ###< drop table crash_me10 
  3911.    ###> OK
  3912.    ###
  3913.    ###As far as all queries returned OK, result is NO
  3914. reserved_word_ansi-92/99_scroll=no    # Keyword SCROLL
  3915.    ###< create table crash_me10 (SCROLL int not null)
  3916.    ###> OK
  3917.    ###< drop table crash_me10 
  3918.    ###> OK
  3919.    ###
  3920.    ###As far as all queries returned OK, result is NO
  3921. reserved_word_ansi-92/99_search=no    # Keyword SEARCH
  3922.    ###< create table crash_me10 (SEARCH int not null)
  3923.    ###> OK
  3924.    ###< drop table crash_me10 
  3925.    ###> OK
  3926.    ###
  3927.    ###As far as all queries returned OK, result is NO
  3928. reserved_word_ansi-92/99_second=no    # Keyword SECOND
  3929.    ###< create table crash_me10 (SECOND int not null)
  3930.    ###> OK
  3931.    ###< drop table crash_me10 
  3932.    ###> OK
  3933.    ###
  3934.    ###As far as all queries returned OK, result is NO
  3935. reserved_word_ansi-92/99_section=no    # Keyword SECTION
  3936.    ###< create table crash_me10 (SECTION int not null)
  3937.    ###> OK
  3938.    ###< drop table crash_me10 
  3939.    ###> OK
  3940.    ###
  3941.    ###As far as all queries returned OK, result is NO
  3942. reserved_word_ansi-92/99_select=yes    # Keyword SELECT
  3943.    ###< create table crash_me10 (SELECT int not null)
  3944.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
  3945.    ###< drop table crash_me10 
  3946.    ###> execute error:Unknown table 'crash_me10'
  3947.    ###
  3948.    ###As far as some queries didnt return OK, result is YES
  3949. reserved_word_ansi-92/99_sequence=no    # Keyword SEQUENCE
  3950.    ###< create table crash_me10 (SEQUENCE int not null)
  3951.    ###> OK
  3952.    ###< drop table crash_me10 
  3953.    ###> OK
  3954.    ###
  3955.    ###As far as all queries returned OK, result is NO
  3956. reserved_word_ansi-92/99_session=no    # Keyword SESSION
  3957.    ###< create table crash_me10 (SESSION int not null)
  3958.    ###> OK
  3959.    ###< drop table crash_me10 
  3960.    ###> OK
  3961.    ###
  3962.    ###As far as all queries returned OK, result is NO
  3963. reserved_word_ansi-92/99_session_user=no    # Keyword SESSION_USER
  3964.    ###< create table crash_me10 (SESSION_USER int not null)
  3965.    ###> OK
  3966.    ###< drop table crash_me10 
  3967.    ###> OK
  3968.    ###
  3969.    ###As far as all queries returned OK, result is NO
  3970. reserved_word_ansi-92/99_set=yes    # Keyword SET
  3971.    ###< create table crash_me10 (SET int not null)
  3972.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SET int not null)' at line 1
  3973.    ###< drop table crash_me10 
  3974.    ###> execute error:Unknown table 'crash_me10'
  3975.    ###
  3976.    ###As far as some queries didnt return OK, result is YES
  3977. reserved_word_ansi-92/99_signal=no    # Keyword SIGNAL
  3978.    ###< create table crash_me10 (SIGNAL int not null)
  3979.    ###> OK
  3980.    ###< drop table crash_me10 
  3981.    ###> OK
  3982.    ###
  3983.    ###As far as all queries returned OK, result is NO
  3984. reserved_word_ansi-92/99_size=no    # Keyword SIZE
  3985.    ###< create table crash_me10 (SIZE int not null)
  3986.    ###> OK
  3987.    ###< drop table crash_me10 
  3988.    ###> OK
  3989.    ###
  3990.    ###As far as all queries returned OK, result is NO
  3991. reserved_word_ansi-92/99_smallint=yes    # Keyword SMALLINT
  3992.    ###< create table crash_me10 (SMALLINT int not null)
  3993.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SMALLINT int not null)' at line 1
  3994.    ###< drop table crash_me10 
  3995.    ###> execute error:Unknown table 'crash_me10'
  3996.    ###
  3997.    ###As far as some queries didnt return OK, result is YES
  3998. reserved_word_ansi-92/99_some=no    # Keyword SOME
  3999.    ###< create table crash_me10 (SOME int not null)
  4000.    ###> OK
  4001.    ###< drop table crash_me10 
  4002.    ###> OK
  4003.    ###
  4004.    ###As far as all queries returned OK, result is NO
  4005. reserved_word_ansi-92/99_space=no    # Keyword SPACE
  4006.    ###< create table crash_me10 (SPACE int not null)
  4007.    ###> OK
  4008.    ###< drop table crash_me10 
  4009.    ###> OK
  4010.    ###
  4011.    ###As far as all queries returned OK, result is NO
  4012. reserved_word_ansi-92/99_sql=no        # Keyword SQL
  4013.    ###< create table crash_me10 (SQL int not null)
  4014.    ###> OK
  4015.    ###< drop table crash_me10 
  4016.    ###> OK
  4017.    ###
  4018.    ###As far as all queries returned OK, result is NO
  4019. reserved_word_ansi-92/99_sqlexception=no    # Keyword SQLEXCEPTION
  4020.    ###< create table crash_me10 (SQLEXCEPTION int not null)
  4021.    ###> OK
  4022.    ###< drop table crash_me10 
  4023.    ###> OK
  4024.    ###
  4025.    ###As far as all queries returned OK, result is NO
  4026. reserved_word_ansi-92/99_sqlstate=no    # Keyword SQLSTATE
  4027.    ###< create table crash_me10 (SQLSTATE int not null)
  4028.    ###> OK
  4029.    ###< drop table crash_me10 
  4030.    ###> OK
  4031.    ###
  4032.    ###As far as all queries returned OK, result is NO
  4033. reserved_word_ansi-92/99_sqlwarning=no    # Keyword SQLWARNING
  4034.    ###< create table crash_me10 (SQLWARNING int not null)
  4035.    ###> OK
  4036.    ###< drop table crash_me10 
  4037.    ###> OK
  4038.    ###
  4039.    ###As far as all queries returned OK, result is NO
  4040. reserved_word_ansi-92/99_structure=no    # Keyword STRUCTURE
  4041.    ###< create table crash_me10 (STRUCTURE int not null)
  4042.    ###> OK
  4043.    ###< drop table crash_me10 
  4044.    ###> OK
  4045.    ###
  4046.    ###As far as all queries returned OK, result is NO
  4047. reserved_word_ansi-92/99_system_user=no    # Keyword SYSTEM_USER
  4048.    ###< create table crash_me10 (SYSTEM_USER int not null)
  4049.    ###> OK
  4050.    ###< drop table crash_me10 
  4051.    ###> OK
  4052.    ###
  4053.    ###As far as all queries returned OK, result is NO
  4054. reserved_word_ansi-92/99_table=yes    # Keyword TABLE
  4055.    ###< create table crash_me10 (TABLE int not null)
  4056.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TABLE int not null)' at line 1
  4057.    ###< drop table crash_me10 
  4058.    ###> execute error:Unknown table 'crash_me10'
  4059.    ###
  4060.    ###As far as some queries didnt return OK, result is YES
  4061. reserved_word_ansi-92/99_temporary=no    # Keyword TEMPORARY
  4062.    ###< create table crash_me10 (TEMPORARY int not null)
  4063.    ###> OK
  4064.    ###< drop table crash_me10 
  4065.    ###> OK
  4066.    ###
  4067.    ###As far as all queries returned OK, result is NO
  4068. reserved_word_ansi-92/99_then=yes    # Keyword THEN
  4069.    ###< create table crash_me10 (THEN int not null)
  4070.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'THEN int not null)' at line 1
  4071.    ###< drop table crash_me10 
  4072.    ###> execute error:Unknown table 'crash_me10'
  4073.    ###
  4074.    ###As far as some queries didnt return OK, result is YES
  4075. reserved_word_ansi-92/99_time=no    # Keyword TIME
  4076.    ###< create table crash_me10 (TIME int not null)
  4077.    ###> OK
  4078.    ###< drop table crash_me10 
  4079.    ###> OK
  4080.    ###
  4081.    ###As far as all queries returned OK, result is NO
  4082. reserved_word_ansi-92/99_timestamp=no    # Keyword TIMESTAMP
  4083.    ###< create table crash_me10 (TIMESTAMP int not null)
  4084.    ###> OK
  4085.    ###< drop table crash_me10 
  4086.    ###> OK
  4087.    ###
  4088.    ###As far as all queries returned OK, result is NO
  4089. reserved_word_ansi-92/99_timezone_hour=no    # Keyword TIMEZONE_HOUR
  4090.    ###< create table crash_me10 (TIMEZONE_HOUR int not null)
  4091.    ###> OK
  4092.    ###< drop table crash_me10 
  4093.    ###> OK
  4094.    ###
  4095.    ###As far as all queries returned OK, result is NO
  4096. reserved_word_ansi-92/99_timezone_minute=no    # Keyword TIMEZONE_MINUTE
  4097.    ###< create table crash_me10 (TIMEZONE_MINUTE int not null)
  4098.    ###> OK
  4099.    ###< drop table crash_me10 
  4100.    ###> OK
  4101.    ###
  4102.    ###As far as all queries returned OK, result is NO
  4103. reserved_word_ansi-92/99_to=yes        # Keyword TO
  4104.    ###< create table crash_me10 (TO int not null)
  4105.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TO int not null)' at line 1
  4106.    ###< drop table crash_me10 
  4107.    ###> execute error:Unknown table 'crash_me10'
  4108.    ###
  4109.    ###As far as some queries didnt return OK, result is YES
  4110. reserved_word_ansi-92/99_trailing=yes    # Keyword TRAILING
  4111.    ###< create table crash_me10 (TRAILING int not null)
  4112.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TRAILING int not null)' at line 1
  4113.    ###< drop table crash_me10 
  4114.    ###> execute error:Unknown table 'crash_me10'
  4115.    ###
  4116.    ###As far as some queries didnt return OK, result is YES
  4117. reserved_word_ansi-92/99_transaction=no    # Keyword TRANSACTION
  4118.    ###< create table crash_me10 (TRANSACTION int not null)
  4119.    ###> OK
  4120.    ###< drop table crash_me10 
  4121.    ###> OK
  4122.    ###
  4123.    ###As far as all queries returned OK, result is NO
  4124. reserved_word_ansi-92/99_translation=no    # Keyword TRANSLATION
  4125.    ###< create table crash_me10 (TRANSLATION int not null)
  4126.    ###> OK
  4127.    ###< drop table crash_me10 
  4128.    ###> OK
  4129.    ###
  4130.    ###As far as all queries returned OK, result is NO
  4131. reserved_word_ansi-92/99_trigger=no    # Keyword TRIGGER
  4132.    ###< create table crash_me10 (TRIGGER int not null)
  4133.    ###> OK
  4134.    ###< drop table crash_me10 
  4135.    ###> OK
  4136.    ###
  4137.    ###As far as all queries returned OK, result is NO
  4138. reserved_word_ansi-92/99_true=no    # Keyword TRUE
  4139.    ###< create table crash_me10 (TRUE int not null)
  4140.    ###> OK
  4141.    ###< drop table crash_me10 
  4142.    ###> OK
  4143.    ###
  4144.    ###As far as all queries returned OK, result is NO
  4145. reserved_word_ansi-92/99_under=no    # Keyword UNDER
  4146.    ###< create table crash_me10 (UNDER int not null)
  4147.    ###> OK
  4148.    ###< drop table crash_me10 
  4149.    ###> OK
  4150.    ###
  4151.    ###As far as all queries returned OK, result is NO
  4152. reserved_word_ansi-92/99_union=yes    # Keyword UNION
  4153.    ###< create table crash_me10 (UNION int not null)
  4154.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'UNION int not null)' at line 1
  4155.    ###< drop table crash_me10 
  4156.    ###> execute error:Unknown table 'crash_me10'
  4157.    ###
  4158.    ###As far as some queries didnt return OK, result is YES
  4159. reserved_word_ansi-92/99_unique=yes    # Keyword UNIQUE
  4160.    ###< create table crash_me10 (UNIQUE int not null)
  4161.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
  4162.    ###< drop table crash_me10 
  4163.    ###> execute error:Unknown table 'crash_me10'
  4164.    ###
  4165.    ###As far as some queries didnt return OK, result is YES
  4166. reserved_word_ansi-92/99_unknown=no    # Keyword UNKNOWN
  4167.    ###< create table crash_me10 (UNKNOWN int not null)
  4168.    ###> OK
  4169.    ###< drop table crash_me10 
  4170.    ###> OK
  4171.    ###
  4172.    ###As far as all queries returned OK, result is NO
  4173. reserved_word_ansi-92/99_update=yes    # Keyword UPDATE
  4174.    ###< create table crash_me10 (UPDATE int not null)
  4175.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'UPDATE int not null)' at line 1
  4176.    ###< drop table crash_me10 
  4177.    ###> execute error:Unknown table 'crash_me10'
  4178.    ###
  4179.    ###As far as some queries didnt return OK, result is YES
  4180. reserved_word_ansi-92/99_usage=yes    # Keyword USAGE
  4181.    ###< create table crash_me10 (USAGE int not null)
  4182.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'USAGE int not null)' at line 1
  4183.    ###< drop table crash_me10 
  4184.    ###> execute error:Unknown table 'crash_me10'
  4185.    ###
  4186.    ###As far as some queries didnt return OK, result is YES
  4187. reserved_word_ansi-92/99_user=no    # Keyword USER
  4188.    ###< create table crash_me10 (USER int not null)
  4189.    ###> OK
  4190.    ###< drop table crash_me10 
  4191.    ###> OK
  4192.    ###
  4193.    ###As far as all queries returned OK, result is NO
  4194. reserved_word_ansi-92/99_using=yes    # Keyword USING
  4195.    ###< create table crash_me10 (USING int not null)
  4196.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'USING int not null)' at line 1
  4197.    ###< drop table crash_me10 
  4198.    ###> execute error:Unknown table 'crash_me10'
  4199.    ###
  4200.    ###As far as some queries didnt return OK, result is YES
  4201. reserved_word_ansi-92/99_value=no    # Keyword VALUE
  4202.    ###< create table crash_me10 (VALUE int not null)
  4203.    ###> OK
  4204.    ###< drop table crash_me10 
  4205.    ###> OK
  4206.    ###
  4207.    ###As far as all queries returned OK, result is NO
  4208. reserved_word_ansi-92/99_values=yes    # Keyword VALUES
  4209.    ###< create table crash_me10 (VALUES int not null)
  4210.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'VALUES int not null)' at line 1
  4211.    ###< drop table crash_me10 
  4212.    ###> execute error:Unknown table 'crash_me10'
  4213.    ###
  4214.    ###As far as some queries didnt return OK, result is YES
  4215. reserved_word_ansi-92/99_varchar=yes    # Keyword VARCHAR
  4216.    ###< create table crash_me10 (VARCHAR int not null)
  4217.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARCHAR int not null)' at line 1
  4218.    ###< drop table crash_me10 
  4219.    ###> execute error:Unknown table 'crash_me10'
  4220.    ###
  4221.    ###As far as some queries didnt return OK, result is YES
  4222. reserved_word_ansi-92/99_variable=no    # Keyword VARIABLE
  4223.    ###< create table crash_me10 (VARIABLE int not null)
  4224.    ###> OK
  4225.    ###< drop table crash_me10 
  4226.    ###> OK
  4227.    ###
  4228.    ###As far as all queries returned OK, result is NO
  4229. reserved_word_ansi-92/99_varying=yes    # Keyword VARYING
  4230.    ###< create table crash_me10 (VARYING int not null)
  4231.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARYING int not null)' at line 1
  4232.    ###< drop table crash_me10 
  4233.    ###> execute error:Unknown table 'crash_me10'
  4234.    ###
  4235.    ###As far as some queries didnt return OK, result is YES
  4236. reserved_word_ansi-92/99_view=no    # Keyword VIEW
  4237.    ###< create table crash_me10 (VIEW int not null)
  4238.    ###> OK
  4239.    ###< drop table crash_me10 
  4240.    ###> OK
  4241.    ###
  4242.    ###As far as all queries returned OK, result is NO
  4243. reserved_word_ansi-92/99_when=yes    # Keyword WHEN
  4244.    ###< create table crash_me10 (WHEN int not null)
  4245.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHEN int not null)' at line 1
  4246.    ###< drop table crash_me10 
  4247.    ###> execute error:Unknown table 'crash_me10'
  4248.    ###
  4249.    ###As far as some queries didnt return OK, result is YES
  4250. reserved_word_ansi-92/99_whenever=no    # Keyword WHENEVER
  4251.    ###< create table crash_me10 (WHENEVER int not null)
  4252.    ###> OK
  4253.    ###< drop table crash_me10 
  4254.    ###> OK
  4255.    ###
  4256.    ###As far as all queries returned OK, result is NO
  4257. reserved_word_ansi-92/99_where=yes    # Keyword WHERE
  4258.    ###< create table crash_me10 (WHERE int not null)
  4259.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE int not null)' at line 1
  4260.    ###< drop table crash_me10 
  4261.    ###> execute error:Unknown table 'crash_me10'
  4262.    ###
  4263.    ###As far as some queries didnt return OK, result is YES
  4264. reserved_word_ansi-92/99_while=no    # Keyword WHILE
  4265.    ###< create table crash_me10 (WHILE int not null)
  4266.    ###> OK
  4267.    ###< drop table crash_me10 
  4268.    ###> OK
  4269.    ###
  4270.    ###As far as all queries returned OK, result is NO
  4271. reserved_word_ansi-92/99_with=yes    # Keyword WITH
  4272.    ###< create table crash_me10 (WITH int not null)
  4273.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'WITH int not null)' at line 1
  4274.    ###< drop table crash_me10 
  4275.    ###> execute error:Unknown table 'crash_me10'
  4276.    ###
  4277.    ###As far as some queries didnt return OK, result is YES
  4278. reserved_word_ansi-92/99_without=no    # Keyword WITHOUT
  4279.    ###< create table crash_me10 (WITHOUT int not null)
  4280.    ###> OK
  4281.    ###< drop table crash_me10 
  4282.    ###> OK
  4283.    ###
  4284.    ###As far as all queries returned OK, result is NO
  4285. reserved_word_ansi-92/99_work=no    # Keyword WORK
  4286.    ###< create table crash_me10 (WORK int not null)
  4287.    ###> OK
  4288.    ###< drop table crash_me10 
  4289.    ###> OK
  4290.    ###
  4291.    ###As far as all queries returned OK, result is NO
  4292. reserved_word_ansi-92/99_write=yes    # Keyword WRITE
  4293.    ###< create table crash_me10 (WRITE int not null)
  4294.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'WRITE int not null)' at line 1
  4295.    ###< drop table crash_me10 
  4296.    ###> execute error:Unknown table 'crash_me10'
  4297.    ###
  4298.    ###As far as some queries didnt return OK, result is YES
  4299. reserved_word_ansi-92/99_year=no    # Keyword YEAR
  4300.    ###< create table crash_me10 (YEAR int not null)
  4301.    ###> OK
  4302.    ###< drop table crash_me10 
  4303.    ###> OK
  4304.    ###
  4305.    ###As far as all queries returned OK, result is NO
  4306. reserved_word_ansi-92/99_zone=no    # Keyword ZONE
  4307.    ###< create table crash_me10 (ZONE int not null)
  4308.    ###> OK
  4309.    ###< drop table crash_me10 
  4310.    ###> OK
  4311.    ###
  4312.    ###As far as all queries returned OK, result is NO
  4313. reserved_word_ansi92_async=no        # Keyword ASYNC
  4314.    ###< create table crash_me10 (ASYNC int not null)
  4315.    ###> OK
  4316.    ###< drop table crash_me10 
  4317.    ###> OK
  4318.    ###
  4319.    ###As far as all queries returned OK, result is NO
  4320. reserved_word_ansi92_avg=no        # Keyword AVG
  4321.    ###< create table crash_me10 (AVG int not null)
  4322.    ###> OK
  4323.    ###< drop table crash_me10 
  4324.    ###> OK
  4325.    ###
  4326.    ###As far as all queries returned OK, result is NO
  4327. reserved_word_ansi92_between=yes    # Keyword BETWEEN
  4328.    ###< create table crash_me10 (BETWEEN int not null)
  4329.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BETWEEN int not null)' at line 1
  4330.    ###< drop table crash_me10 
  4331.    ###> execute error:Unknown table 'crash_me10'
  4332.    ###
  4333.    ###As far as some queries didnt return OK, result is YES
  4334. reserved_word_ansi92_bit_length=no    # Keyword BIT_LENGTH
  4335.    ###< create table crash_me10 (BIT_LENGTH int not null)
  4336.    ###> OK
  4337.    ###< drop table crash_me10 
  4338.    ###> OK
  4339.    ###
  4340.    ###As far as all queries returned OK, result is NO
  4341. reserved_word_ansi92_char_length=no    # Keyword CHAR_LENGTH
  4342.    ###< create table crash_me10 (CHAR_LENGTH int not null)
  4343.    ###> OK
  4344.    ###< drop table crash_me10 
  4345.    ###> OK
  4346.    ###
  4347.    ###As far as all queries returned OK, result is NO
  4348. reserved_word_ansi92_character_length=no    # Keyword CHARACTER_LENGTH
  4349.    ###< create table crash_me10 (CHARACTER_LENGTH int not null)
  4350.    ###> OK
  4351.    ###< drop table crash_me10 
  4352.    ###> OK
  4353.    ###
  4354.    ###As far as all queries returned OK, result is NO
  4355. reserved_word_ansi92_coalesce=no    # Keyword COALESCE
  4356.    ###< create table crash_me10 (COALESCE int not null)
  4357.    ###> OK
  4358.    ###< drop table crash_me10 
  4359.    ###> OK
  4360.    ###
  4361.    ###As far as all queries returned OK, result is NO
  4362. reserved_word_ansi92_convert=no        # Keyword CONVERT
  4363.    ###< create table crash_me10 (CONVERT int not null)
  4364.    ###> OK
  4365.    ###< drop table crash_me10 
  4366.    ###> OK
  4367.    ###
  4368.    ###As far as all queries returned OK, result is NO
  4369. reserved_word_ansi92_count=no        # Keyword COUNT
  4370.    ###< create table crash_me10 (COUNT int not null)
  4371.    ###> OK
  4372.    ###< drop table crash_me10 
  4373.    ###> OK
  4374.    ###
  4375.    ###As far as all queries returned OK, result is NO
  4376. reserved_word_ansi92_exists=yes        # Keyword EXISTS
  4377.    ###< create table crash_me10 (EXISTS int not null)
  4378.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'EXISTS int not null)' at line 1
  4379.    ###< drop table crash_me10 
  4380.    ###> execute error:Unknown table 'crash_me10'
  4381.    ###
  4382.    ###As far as some queries didnt return OK, result is YES
  4383. reserved_word_ansi92_extract=no        # Keyword EXTRACT
  4384.    ###< create table crash_me10 (EXTRACT int not null)
  4385.    ###> OK
  4386.    ###< drop table crash_me10 
  4387.    ###> OK
  4388.    ###
  4389.    ###As far as all queries returned OK, result is NO
  4390. reserved_word_ansi92_insensitive=no    # Keyword INSENSITIVE
  4391.    ###< create table crash_me10 (INSENSITIVE int not null)
  4392.    ###> OK
  4393.    ###< drop table crash_me10 
  4394.    ###> OK
  4395.    ###
  4396.    ###As far as all queries returned OK, result is NO
  4397. reserved_word_ansi92_lower=no        # Keyword LOWER
  4398.    ###< create table crash_me10 (LOWER int not null)
  4399.    ###> OK
  4400.    ###< drop table crash_me10 
  4401.    ###> OK
  4402.    ###
  4403.    ###As far as all queries returned OK, result is NO
  4404. reserved_word_ansi92_max=no        # Keyword MAX
  4405.    ###< create table crash_me10 (MAX int not null)
  4406.    ###> OK
  4407.    ###< drop table crash_me10 
  4408.    ###> OK
  4409.    ###
  4410.    ###As far as all queries returned OK, result is NO
  4411. reserved_word_ansi92_min=no        # Keyword MIN
  4412.    ###< create table crash_me10 (MIN int not null)
  4413.    ###> OK
  4414.    ###< drop table crash_me10 
  4415.    ###> OK
  4416.    ###
  4417.    ###As far as all queries returned OK, result is NO
  4418. reserved_word_ansi92_nullif=no        # Keyword NULLIF
  4419.    ###< create table crash_me10 (NULLIF int not null)
  4420.    ###> OK
  4421.    ###< drop table crash_me10 
  4422.    ###> OK
  4423.    ###
  4424.    ###As far as all queries returned OK, result is NO
  4425. reserved_word_ansi92_octet_length=no    # Keyword OCTET_LENGTH
  4426.    ###< create table crash_me10 (OCTET_LENGTH int not null)
  4427.    ###> OK
  4428.    ###< drop table crash_me10 
  4429.    ###> OK
  4430.    ###
  4431.    ###As far as all queries returned OK, result is NO
  4432. reserved_word_ansi92_oid=no        # Keyword OID
  4433.    ###< create table crash_me10 (OID int not null)
  4434.    ###> OK
  4435.    ###< drop table crash_me10 
  4436.    ###> OK
  4437.    ###
  4438.    ###As far as all queries returned OK, result is NO
  4439. reserved_word_ansi92_operators=no    # Keyword OPERATORS
  4440.    ###< create table crash_me10 (OPERATORS int not null)
  4441.    ###> OK
  4442.    ###< drop table crash_me10 
  4443.    ###> OK
  4444.    ###
  4445.    ###As far as all queries returned OK, result is NO
  4446. reserved_word_ansi92_others=no        # Keyword OTHERS
  4447.    ###< create table crash_me10 (OTHERS int not null)
  4448.    ###> OK
  4449.    ###< drop table crash_me10 
  4450.    ###> OK
  4451.    ###
  4452.    ###As far as all queries returned OK, result is NO
  4453. reserved_word_ansi92_overlaps=no    # Keyword OVERLAPS
  4454.    ###< create table crash_me10 (OVERLAPS int not null)
  4455.    ###> OK
  4456.    ###< drop table crash_me10 
  4457.    ###> OK
  4458.    ###
  4459.    ###As far as all queries returned OK, result is NO
  4460. reserved_word_ansi92_pendant=no        # Keyword PENDANT
  4461.    ###< create table crash_me10 (PENDANT int not null)
  4462.    ###> OK
  4463.    ###< drop table crash_me10 
  4464.    ###> OK
  4465.    ###
  4466.    ###As far as all queries returned OK, result is NO
  4467. reserved_word_ansi92_position=no    # Keyword POSITION
  4468.    ###< create table crash_me10 (POSITION int not null)
  4469.    ###> OK
  4470.    ###< drop table crash_me10 
  4471.    ###> OK
  4472.    ###
  4473.    ###As far as all queries returned OK, result is NO
  4474. reserved_word_ansi92_private=no        # Keyword PRIVATE
  4475.    ###< create table crash_me10 (PRIVATE int not null)
  4476.    ###> OK
  4477.    ###< drop table crash_me10 
  4478.    ###> OK
  4479.    ###
  4480.    ###As far as all queries returned OK, result is NO
  4481. reserved_word_ansi92_protected=no    # Keyword PROTECTED
  4482.    ###< create table crash_me10 (PROTECTED int not null)
  4483.    ###> OK
  4484.    ###< drop table crash_me10 
  4485.    ###> OK
  4486.    ###
  4487.    ###As far as all queries returned OK, result is NO
  4488. reserved_word_ansi92_replace=yes    # Keyword REPLACE
  4489.    ###< create table crash_me10 (REPLACE int not null)
  4490.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REPLACE int not null)' at line 1
  4491.    ###< drop table crash_me10 
  4492.    ###> execute error:Unknown table 'crash_me10'
  4493.    ###
  4494.    ###As far as some queries didnt return OK, result is YES
  4495. reserved_word_ansi92_sensitive=no    # Keyword SENSITIVE
  4496.    ###< create table crash_me10 (SENSITIVE int not null)
  4497.    ###> OK
  4498.    ###< drop table crash_me10 
  4499.    ###> OK
  4500.    ###
  4501.    ###As far as all queries returned OK, result is NO
  4502. reserved_word_ansi92_similar=no        # Keyword SIMILAR
  4503.    ###< create table crash_me10 (SIMILAR int not null)
  4504.    ###> OK
  4505.    ###< drop table crash_me10 
  4506.    ###> OK
  4507.    ###
  4508.    ###As far as all queries returned OK, result is NO
  4509. reserved_word_ansi92_sqlcode=no        # Keyword SQLCODE
  4510.    ###< create table crash_me10 (SQLCODE int not null)
  4511.    ###> OK
  4512.    ###< drop table crash_me10 
  4513.    ###> OK
  4514.    ###
  4515.    ###As far as all queries returned OK, result is NO
  4516. reserved_word_ansi92_sqlerror=no    # Keyword SQLERROR
  4517.    ###< create table crash_me10 (SQLERROR int not null)
  4518.    ###> OK
  4519.    ###< drop table crash_me10 
  4520.    ###> OK
  4521.    ###
  4522.    ###As far as all queries returned OK, result is NO
  4523. reserved_word_ansi92_substring=no    # Keyword SUBSTRING
  4524.    ###< create table crash_me10 (SUBSTRING int not null)
  4525.    ###> OK
  4526.    ###< drop table crash_me10 
  4527.    ###> OK
  4528.    ###
  4529.    ###As far as all queries returned OK, result is NO
  4530. reserved_word_ansi92_sum=no        # Keyword SUM
  4531.    ###< create table crash_me10 (SUM int not null)
  4532.    ###> OK
  4533.    ###< drop table crash_me10 
  4534.    ###> OK
  4535.    ###
  4536.    ###As far as all queries returned OK, result is NO
  4537. reserved_word_ansi92_test=no        # Keyword TEST
  4538.    ###< create table crash_me10 (TEST int not null)
  4539.    ###> OK
  4540.    ###< drop table crash_me10 
  4541.    ###> OK
  4542.    ###
  4543.    ###As far as all queries returned OK, result is NO
  4544. reserved_word_ansi92_there=no        # Keyword THERE
  4545.    ###< create table crash_me10 (THERE int not null)
  4546.    ###> OK
  4547.    ###< drop table crash_me10 
  4548.    ###> OK
  4549.    ###
  4550.    ###As far as all queries returned OK, result is NO
  4551. reserved_word_ansi92_translate=no    # Keyword TRANSLATE
  4552.    ###< create table crash_me10 (TRANSLATE int not null)
  4553.    ###> OK
  4554.    ###< drop table crash_me10 
  4555.    ###> OK
  4556.    ###
  4557.    ###As far as all queries returned OK, result is NO
  4558. reserved_word_ansi92_trim=no        # Keyword TRIM
  4559.    ###< create table crash_me10 (TRIM int not null)
  4560.    ###> OK
  4561.    ###< drop table crash_me10 
  4562.    ###> OK
  4563.    ###
  4564.    ###As far as all queries returned OK, result is NO
  4565. reserved_word_ansi92_type=no        # Keyword TYPE
  4566.    ###< create table crash_me10 (TYPE int not null)
  4567.    ###> OK
  4568.    ###< drop table crash_me10 
  4569.    ###> OK
  4570.    ###
  4571.    ###As far as all queries returned OK, result is NO
  4572. reserved_word_ansi92_upper=no        # Keyword UPPER
  4573.    ###< create table crash_me10 (UPPER int not null)
  4574.    ###> OK
  4575.    ###< drop table crash_me10 
  4576.    ###> OK
  4577.    ###
  4578.    ###As far as all queries returned OK, result is NO
  4579. reserved_word_ansi92_virtual=no        # Keyword VIRTUAL
  4580.    ###< create table crash_me10 (VIRTUAL int not null)
  4581.    ###> OK
  4582.    ###< drop table crash_me10 
  4583.    ###> OK
  4584.    ###
  4585.    ###As far as all queries returned OK, result is NO
  4586. reserved_word_ansi92_visible=no        # Keyword VISIBLE
  4587.    ###< create table crash_me10 (VISIBLE int not null)
  4588.    ###> OK
  4589.    ###< drop table crash_me10 
  4590.    ###> OK
  4591.    ###
  4592.    ###As far as all queries returned OK, result is NO
  4593. reserved_word_ansi92_wait=no        # Keyword WAIT
  4594.    ###< create table crash_me10 (WAIT int not null)
  4595.    ###> OK
  4596.    ###< drop table crash_me10 
  4597.    ###> OK
  4598.    ###
  4599.    ###As far as all queries returned OK, result is NO
  4600. reserved_word_ansi99_admin=no        # Keyword ADMIN
  4601.    ###< create table crash_me10 (ADMIN int not null)
  4602.    ###> OK
  4603.    ###< drop table crash_me10 
  4604.    ###> OK
  4605.    ###
  4606.    ###As far as all queries returned OK, result is NO
  4607. reserved_word_ansi99_aggregate=no    # Keyword AGGREGATE
  4608.    ###< create table crash_me10 (AGGREGATE int not null)
  4609.    ###> OK
  4610.    ###< drop table crash_me10 
  4611.    ###> OK
  4612.    ###
  4613.    ###As far as all queries returned OK, result is NO
  4614. reserved_word_ansi99_array=no        # Keyword ARRAY
  4615.    ###< create table crash_me10 (ARRAY int not null)
  4616.    ###> OK
  4617.    ###< drop table crash_me10 
  4618.    ###> OK
  4619.    ###
  4620.    ###As far as all queries returned OK, result is NO
  4621. reserved_word_ansi99_binary=yes        # Keyword BINARY
  4622.    ###< create table crash_me10 (BINARY int not null)
  4623.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BINARY int not null)' at line 1
  4624.    ###< drop table crash_me10 
  4625.    ###> execute error:Unknown table 'crash_me10'
  4626.    ###
  4627.    ###As far as some queries didnt return OK, result is YES
  4628. reserved_word_ansi99_blob=yes        # Keyword BLOB
  4629.    ###< create table crash_me10 (BLOB int not null)
  4630.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BLOB int not null)' at line 1
  4631.    ###< drop table crash_me10 
  4632.    ###> execute error:Unknown table 'crash_me10'
  4633.    ###
  4634.    ###As far as some queries didnt return OK, result is YES
  4635. reserved_word_ansi99_class=no        # Keyword CLASS
  4636.    ###< create table crash_me10 (CLASS int not null)
  4637.    ###> OK
  4638.    ###< drop table crash_me10 
  4639.    ###> OK
  4640.    ###
  4641.    ###As far as all queries returned OK, result is NO
  4642. reserved_word_ansi99_clob=no        # Keyword CLOB
  4643.    ###< create table crash_me10 (CLOB int not null)
  4644.    ###> OK
  4645.    ###< drop table crash_me10 
  4646.    ###> OK
  4647.    ###
  4648.    ###As far as all queries returned OK, result is NO
  4649. reserved_word_ansi99_condition=no    # Keyword CONDITION
  4650.    ###< create table crash_me10 (CONDITION int not null)
  4651.    ###> OK
  4652.    ###< drop table crash_me10 
  4653.    ###> OK
  4654.    ###
  4655.    ###As far as all queries returned OK, result is NO
  4656. reserved_word_ansi99_constructor=no    # Keyword CONSTRUCTOR
  4657.    ###< create table crash_me10 (CONSTRUCTOR int not null)
  4658.    ###> OK
  4659.    ###< drop table crash_me10 
  4660.    ###> OK
  4661.    ###
  4662.    ###As far as all queries returned OK, result is NO
  4663. reserved_word_ansi99_contains=no    # Keyword CONTAINS
  4664.    ###< create table crash_me10 (CONTAINS int not null)
  4665.    ###> OK
  4666.    ###< drop table crash_me10 
  4667.    ###> OK
  4668.    ###
  4669.    ###As far as all queries returned OK, result is NO
  4670. reserved_word_ansi99_cube=no        # Keyword CUBE
  4671.    ###< create table crash_me10 (CUBE int not null)
  4672.    ###> OK
  4673.    ###< drop table crash_me10 
  4674.    ###> OK
  4675.    ###
  4676.    ###As far as all queries returned OK, result is NO
  4677. reserved_word_ansi99_current_path=no    # Keyword CURRENT_PATH
  4678.    ###< create table crash_me10 (CURRENT_PATH int not null)
  4679.    ###> OK
  4680.    ###< drop table crash_me10 
  4681.    ###> OK
  4682.    ###
  4683.    ###As far as all queries returned OK, result is NO
  4684. reserved_word_ansi99_current_role=no    # Keyword CURRENT_ROLE
  4685.    ###< create table crash_me10 (CURRENT_ROLE int not null)
  4686.    ###> OK
  4687.    ###< drop table crash_me10 
  4688.    ###> OK
  4689.    ###
  4690.    ###As far as all queries returned OK, result is NO
  4691. reserved_word_ansi99_datalink=no    # Keyword DATALINK
  4692.    ###< create table crash_me10 (DATALINK int not null)
  4693.    ###> OK
  4694.    ###< drop table crash_me10 
  4695.    ###> OK
  4696.    ###
  4697.    ###As far as all queries returned OK, result is NO
  4698. reserved_word_ansi99_deref=no        # Keyword DEREF
  4699.    ###< create table crash_me10 (DEREF int not null)
  4700.    ###> OK
  4701.    ###< drop table crash_me10 
  4702.    ###> OK
  4703.    ###
  4704.    ###As far as all queries returned OK, result is NO
  4705. reserved_word_ansi99_destroy=no        # Keyword DESTROY
  4706.    ###< create table crash_me10 (DESTROY int not null)
  4707.    ###> OK
  4708.    ###< drop table crash_me10 
  4709.    ###> OK
  4710.    ###
  4711.    ###As far as all queries returned OK, result is NO
  4712. reserved_word_ansi99_destructor=no    # Keyword DESTRUCTOR
  4713.    ###< create table crash_me10 (DESTRUCTOR int not null)
  4714.    ###> OK
  4715.    ###< drop table crash_me10 
  4716.    ###> OK
  4717.    ###
  4718.    ###As far as all queries returned OK, result is NO
  4719. reserved_word_ansi99_deterministic=no    # Keyword DETERMINISTIC
  4720.    ###< create table crash_me10 (DETERMINISTIC int not null)
  4721.    ###> OK
  4722.    ###< drop table crash_me10 
  4723.    ###> OK
  4724.    ###
  4725.    ###As far as all queries returned OK, result is NO
  4726. reserved_word_ansi99_do=no        # Keyword DO
  4727.    ###< create table crash_me10 (DO int not null)
  4728.    ###> OK
  4729.    ###< drop table crash_me10 
  4730.    ###> OK
  4731.    ###
  4732.    ###As far as all queries returned OK, result is NO
  4733. reserved_word_ansi99_dynamic=no        # Keyword DYNAMIC
  4734.    ###< create table crash_me10 (DYNAMIC int not null)
  4735.    ###> OK
  4736.    ###< drop table crash_me10 
  4737.    ###> OK
  4738.    ###
  4739.    ###As far as all queries returned OK, result is NO
  4740. reserved_word_ansi99_every=no        # Keyword EVERY
  4741.    ###< create table crash_me10 (EVERY int not null)
  4742.    ###> OK
  4743.    ###< drop table crash_me10 
  4744.    ###> OK
  4745.    ###
  4746.    ###As far as all queries returned OK, result is NO
  4747. reserved_word_ansi99_exit=no        # Keyword EXIT
  4748.    ###< create table crash_me10 (EXIT int not null)
  4749.    ###> OK
  4750.    ###< drop table crash_me10 
  4751.    ###> OK
  4752.    ###
  4753.    ###As far as all queries returned OK, result is NO
  4754. reserved_word_ansi99_expand=no        # Keyword EXPAND
  4755.    ###< create table crash_me10 (EXPAND int not null)
  4756.    ###> OK
  4757.    ###< drop table crash_me10 
  4758.    ###> OK
  4759.    ###
  4760.    ###As far as all queries returned OK, result is NO
  4761. reserved_word_ansi99_expanding=no    # Keyword EXPANDING
  4762.    ###< create table crash_me10 (EXPANDING int not null)
  4763.    ###> OK
  4764.    ###< drop table crash_me10 
  4765.    ###> OK
  4766.    ###
  4767.    ###As far as all queries returned OK, result is NO
  4768. reserved_word_ansi99_free=no        # Keyword FREE
  4769.    ###< create table crash_me10 (FREE int not null)
  4770.    ###> OK
  4771.    ###< drop table crash_me10 
  4772.    ###> OK
  4773.    ###
  4774.    ###As far as all queries returned OK, result is NO
  4775. reserved_word_ansi99_function=no    # Keyword FUNCTION
  4776.    ###< create table crash_me10 (FUNCTION int not null)
  4777.    ###> OK
  4778.    ###< drop table crash_me10 
  4779.    ###> OK
  4780.    ###
  4781.    ###As far as all queries returned OK, result is NO
  4782. reserved_word_ansi99_grouping=no    # Keyword GROUPING
  4783.    ###< create table crash_me10 (GROUPING int not null)
  4784.    ###> OK
  4785.    ###< drop table crash_me10 
  4786.    ###> OK
  4787.    ###
  4788.    ###As far as all queries returned OK, result is NO
  4789. reserved_word_ansi99_handler=no        # Keyword HANDLER
  4790.    ###< create table crash_me10 (HANDLER int not null)
  4791.    ###> OK
  4792.    ###< drop table crash_me10 
  4793.    ###> OK
  4794.    ###
  4795.    ###As far as all queries returned OK, result is NO
  4796. reserved_word_ansi99_hast=no        # Keyword HAST
  4797.    ###< create table crash_me10 (HAST int not null)
  4798.    ###> OK
  4799.    ###< drop table crash_me10 
  4800.    ###> OK
  4801.    ###
  4802.    ###As far as all queries returned OK, result is NO
  4803. reserved_word_ansi99_host=no        # Keyword HOST
  4804.    ###< create table crash_me10 (HOST int not null)
  4805.    ###> OK
  4806.    ###< drop table crash_me10 
  4807.    ###> OK
  4808.    ###
  4809.    ###As far as all queries returned OK, result is NO
  4810. reserved_word_ansi99_initialize=no    # Keyword INITIALIZE
  4811.    ###< create table crash_me10 (INITIALIZE int not null)
  4812.    ###> OK
  4813.    ###< drop table crash_me10 
  4814.    ###> OK
  4815.    ###
  4816.    ###As far as all queries returned OK, result is NO
  4817. reserved_word_ansi99_inout=no        # Keyword INOUT
  4818.    ###< create table crash_me10 (INOUT int not null)
  4819.    ###> OK
  4820.    ###< drop table crash_me10 
  4821.    ###> OK
  4822.    ###
  4823.    ###As far as all queries returned OK, result is NO
  4824. reserved_word_ansi99_iterate=no        # Keyword ITERATE
  4825.    ###< create table crash_me10 (ITERATE int not null)
  4826.    ###> OK
  4827.    ###< drop table crash_me10 
  4828.    ###> OK
  4829.    ###
  4830.    ###As far as all queries returned OK, result is NO
  4831. reserved_word_ansi99_large=no        # Keyword LARGE
  4832.    ###< create table crash_me10 (LARGE int not null)
  4833.    ###> OK
  4834.    ###< drop table crash_me10 
  4835.    ###> OK
  4836.    ###
  4837.    ###As far as all queries returned OK, result is NO
  4838. reserved_word_ansi99_lateral=no        # Keyword LATERAL
  4839.    ###< create table crash_me10 (LATERAL int not null)
  4840.    ###> OK
  4841.    ###< drop table crash_me10 
  4842.    ###> OK
  4843.    ###
  4844.    ###As far as all queries returned OK, result is NO
  4845. reserved_word_ansi99_localtime=yes    # Keyword LOCALTIME
  4846.    ###< create table crash_me10 (LOCALTIME int not null)
  4847.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOCALTIME int not null)' at line 1
  4848.    ###< drop table crash_me10 
  4849.    ###> execute error:Unknown table 'crash_me10'
  4850.    ###
  4851.    ###As far as some queries didnt return OK, result is YES
  4852. reserved_word_ansi99_localtimestamp=yes    # Keyword LOCALTIMESTAMP
  4853.    ###< create table crash_me10 (LOCALTIMESTAMP int not null)
  4854.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOCALTIMESTAMP int not null)' at line 1
  4855.    ###< drop table crash_me10 
  4856.    ###> execute error:Unknown table 'crash_me10'
  4857.    ###
  4858.    ###As far as some queries didnt return OK, result is YES
  4859. reserved_word_ansi99_locator=no        # Keyword LOCATOR
  4860.    ###< create table crash_me10 (LOCATOR int not null)
  4861.    ###> OK
  4862.    ###< drop table crash_me10 
  4863.    ###> OK
  4864.    ###
  4865.    ###As far as all queries returned OK, result is NO
  4866. reserved_word_ansi99_meets=no        # Keyword MEETS
  4867.    ###< create table crash_me10 (MEETS int not null)
  4868.    ###> OK
  4869.    ###< drop table crash_me10 
  4870.    ###> OK
  4871.    ###
  4872.    ###As far as all queries returned OK, result is NO
  4873. reserved_word_ansi99_modifies=no    # Keyword MODIFIES
  4874.    ###< create table crash_me10 (MODIFIES int not null)
  4875.    ###> OK
  4876.    ###< drop table crash_me10 
  4877.    ###> OK
  4878.    ###
  4879.    ###As far as all queries returned OK, result is NO
  4880. reserved_word_ansi99_nclob=no        # Keyword NCLOB
  4881.    ###< create table crash_me10 (NCLOB int not null)
  4882.    ###> OK
  4883.    ###< drop table crash_me10 
  4884.    ###> OK
  4885.    ###
  4886.    ###As far as all queries returned OK, result is NO
  4887. reserved_word_ansi99_normalize=no    # Keyword NORMALIZE
  4888.    ###< create table crash_me10 (NORMALIZE int not null)
  4889.    ###> OK
  4890.    ###< drop table crash_me10 
  4891.    ###> OK
  4892.    ###
  4893.    ###As far as all queries returned OK, result is NO
  4894. reserved_word_ansi99_ordinality=no    # Keyword ORDINALITY
  4895.    ###< create table crash_me10 (ORDINALITY int not null)
  4896.    ###> OK
  4897.    ###< drop table crash_me10 
  4898.    ###> OK
  4899.    ###
  4900.    ###As far as all queries returned OK, result is NO
  4901. reserved_word_ansi99_out=no        # Keyword OUT
  4902.    ###< create table crash_me10 (OUT int not null)
  4903.    ###> OK
  4904.    ###< drop table crash_me10 
  4905.    ###> OK
  4906.    ###
  4907.    ###As far as all queries returned OK, result is NO
  4908. reserved_word_ansi99_parameter=no    # Keyword PARAMETER
  4909.    ###< create table crash_me10 (PARAMETER int not null)
  4910.    ###> OK
  4911.    ###< drop table crash_me10 
  4912.    ###> OK
  4913.    ###
  4914.    ###As far as all queries returned OK, result is NO
  4915. reserved_word_ansi99_path=no        # Keyword PATH
  4916.    ###< create table crash_me10 (PATH int not null)
  4917.    ###> OK
  4918.    ###< drop table crash_me10 
  4919.    ###> OK
  4920.    ###
  4921.    ###As far as all queries returned OK, result is NO
  4922. reserved_word_ansi99_period=no        # Keyword PERIOD
  4923.    ###< create table crash_me10 (PERIOD int not null)
  4924.    ###> OK
  4925.    ###< drop table crash_me10 
  4926.    ###> OK
  4927.    ###
  4928.    ###As far as all queries returned OK, result is NO
  4929. reserved_word_ansi99_postfix=no        # Keyword POSTFIX
  4930.    ###< create table crash_me10 (POSTFIX int not null)
  4931.    ###> OK
  4932.    ###< drop table crash_me10 
  4933.    ###> OK
  4934.    ###
  4935.    ###As far as all queries returned OK, result is NO
  4936. reserved_word_ansi99_precedes=no    # Keyword PRECEDES
  4937.    ###< create table crash_me10 (PRECEDES int not null)
  4938.    ###> OK
  4939.    ###< drop table crash_me10 
  4940.    ###> OK
  4941.    ###
  4942.    ###As far as all queries returned OK, result is NO
  4943. reserved_word_ansi99_prefix=no        # Keyword PREFIX
  4944.    ###< create table crash_me10 (PREFIX int not null)
  4945.    ###> OK
  4946.    ###< drop table crash_me10 
  4947.    ###> OK
  4948.    ###
  4949.    ###As far as all queries returned OK, result is NO
  4950. reserved_word_ansi99_reads=no        # Keyword READS
  4951.    ###< create table crash_me10 (READS int not null)
  4952.    ###> OK
  4953.    ###< drop table crash_me10 
  4954.    ###> OK
  4955.    ###
  4956.    ###As far as all queries returned OK, result is NO
  4957. reserved_word_ansi99_redo=no        # Keyword REDO
  4958.    ###< create table crash_me10 (REDO int not null)
  4959.    ###> OK
  4960.    ###< drop table crash_me10 
  4961.    ###> OK
  4962.    ###
  4963.    ###As far as all queries returned OK, result is NO
  4964. reserved_word_ansi99_repeat=no        # Keyword REPEAT
  4965.    ###< create table crash_me10 (REPEAT int not null)
  4966.    ###> OK
  4967.    ###< drop table crash_me10 
  4968.    ###> OK
  4969.    ###
  4970.    ###As far as all queries returned OK, result is NO
  4971. reserved_word_ansi99_result=no        # Keyword RESULT
  4972.    ###< create table crash_me10 (RESULT int not null)
  4973.    ###> OK
  4974.    ###< drop table crash_me10 
  4975.    ###> OK
  4976.    ###
  4977.    ###As far as all queries returned OK, result is NO
  4978. reserved_word_ansi99_rollup=no        # Keyword ROLLUP
  4979.    ###< create table crash_me10 (ROLLUP int not null)
  4980.    ###> OK
  4981.    ###< drop table crash_me10 
  4982.    ###> OK
  4983.    ###
  4984.    ###As far as all queries returned OK, result is NO
  4985. reserved_word_ansi99_sets=no        # Keyword SETS
  4986.    ###< create table crash_me10 (SETS int not null)
  4987.    ###> OK
  4988.    ###< drop table crash_me10 
  4989.    ###> OK
  4990.    ###
  4991.    ###As far as all queries returned OK, result is NO
  4992. reserved_word_ansi99_specific=no    # Keyword SPECIFIC
  4993.    ###< create table crash_me10 (SPECIFIC int not null)
  4994.    ###> OK
  4995.    ###< drop table crash_me10 
  4996.    ###> OK
  4997.    ###
  4998.    ###As far as all queries returned OK, result is NO
  4999. reserved_word_ansi99_specifictype=no    # Keyword SPECIFICTYPE
  5000.    ###< create table crash_me10 (SPECIFICTYPE int not null)
  5001.    ###> OK
  5002.    ###< drop table crash_me10 
  5003.    ###> OK
  5004.    ###
  5005.    ###As far as all queries returned OK, result is NO
  5006. reserved_word_ansi99_start=no        # Keyword START
  5007.    ###< create table crash_me10 (START int not null)
  5008.    ###> OK
  5009.    ###< drop table crash_me10 
  5010.    ###> OK
  5011.    ###
  5012.    ###As far as all queries returned OK, result is NO
  5013. reserved_word_ansi99_state=no        # Keyword STATE
  5014.    ###< create table crash_me10 (STATE int not null)
  5015.    ###> OK
  5016.    ###< drop table crash_me10 
  5017.    ###> OK
  5018.    ###
  5019.    ###As far as all queries returned OK, result is NO
  5020. reserved_word_ansi99_static=no        # Keyword STATIC
  5021.    ###< create table crash_me10 (STATIC int not null)
  5022.    ###> OK
  5023.    ###< drop table crash_me10 
  5024.    ###> OK
  5025.    ###
  5026.    ###As far as all queries returned OK, result is NO
  5027. reserved_word_ansi99_succeeds=no    # Keyword SUCCEEDS
  5028.    ###< create table crash_me10 (SUCCEEDS int not null)
  5029.    ###> OK
  5030.    ###< drop table crash_me10 
  5031.    ###> OK
  5032.    ###
  5033.    ###As far as all queries returned OK, result is NO
  5034. reserved_word_ansi99_terminate=no    # Keyword TERMINATE
  5035.    ###< create table crash_me10 (TERMINATE int not null)
  5036.    ###> OK
  5037.    ###< drop table crash_me10 
  5038.    ###> OK
  5039.    ###
  5040.    ###As far as all queries returned OK, result is NO
  5041. reserved_word_ansi99_than=no        # Keyword THAN
  5042.    ###< create table crash_me10 (THAN int not null)
  5043.    ###> OK
  5044.    ###< drop table crash_me10 
  5045.    ###> OK
  5046.    ###
  5047.    ###As far as all queries returned OK, result is NO
  5048. reserved_word_ansi99_treat=no        # Keyword TREAT
  5049.    ###< create table crash_me10 (TREAT int not null)
  5050.    ###> OK
  5051.    ###< drop table crash_me10 
  5052.    ###> OK
  5053.    ###
  5054.    ###As far as all queries returned OK, result is NO
  5055. reserved_word_ansi99_undo=no        # Keyword UNDO
  5056.    ###< create table crash_me10 (UNDO int not null)
  5057.    ###> OK
  5058.    ###< drop table crash_me10 
  5059.    ###> OK
  5060.    ###
  5061.    ###As far as all queries returned OK, result is NO
  5062. reserved_word_ansi99_until=no        # Keyword UNTIL
  5063.    ###< create table crash_me10 (UNTIL int not null)
  5064.    ###> OK
  5065.    ###< drop table crash_me10 
  5066.    ###> OK
  5067.    ###
  5068.    ###As far as all queries returned OK, result is NO
  5069. reserved_word_extra_access=no        # Keyword ACCESS
  5070.    ###< create table crash_me10 (ACCESS int not null)
  5071.    ###> OK
  5072.    ###< drop table crash_me10 
  5073.    ###> OK
  5074.    ###
  5075.    ###As far as all queries returned OK, result is NO
  5076. reserved_word_extra_analyze=yes        # Keyword ANALYZE
  5077.    ###< create table crash_me10 (ANALYZE int not null)
  5078.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ANALYZE int not null)' at line 1
  5079.    ###< drop table crash_me10 
  5080.    ###> execute error:Unknown table 'crash_me10'
  5081.    ###
  5082.    ###As far as some queries didnt return OK, result is YES
  5083. reserved_word_extra_audit=no        # Keyword AUDIT
  5084.    ###< create table crash_me10 (AUDIT int not null)
  5085.    ###> OK
  5086.    ###< drop table crash_me10 
  5087.    ###> OK
  5088.    ###
  5089.    ###As far as all queries returned OK, result is NO
  5090. reserved_word_extra_auto_increment=no    # Keyword AUTO_INCREMENT
  5091.    ###< create table crash_me10 (AUTO_INCREMENT int not null)
  5092.    ###> OK
  5093.    ###< drop table crash_me10 
  5094.    ###> OK
  5095.    ###
  5096.    ###As far as all queries returned OK, result is NO
  5097. reserved_word_extra_backup=no        # Keyword BACKUP
  5098.    ###< create table crash_me10 (BACKUP int not null)
  5099.    ###> OK
  5100.    ###< drop table crash_me10 
  5101.    ###> OK
  5102.    ###
  5103.    ###As far as all queries returned OK, result is NO
  5104. reserved_word_extra_bdb=no        # Keyword BDB
  5105.    ###< create table crash_me10 (BDB int not null)
  5106.    ###> OK
  5107.    ###< drop table crash_me10 
  5108.    ###> OK
  5109.    ###
  5110.    ###As far as all queries returned OK, result is NO
  5111. reserved_word_extra_berkeleydb=no    # Keyword BERKELEYDB
  5112.    ###< create table crash_me10 (BERKELEYDB int not null)
  5113.    ###> OK
  5114.    ###< drop table crash_me10 
  5115.    ###> OK
  5116.    ###
  5117.    ###As far as all queries returned OK, result is NO
  5118. reserved_word_extra_bigint=yes        # Keyword BIGINT
  5119.    ###< create table crash_me10 (BIGINT int not null)
  5120.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'BIGINT int not null)' at line 1
  5121.    ###< drop table crash_me10 
  5122.    ###> execute error:Unknown table 'crash_me10'
  5123.    ###
  5124.    ###As far as some queries didnt return OK, result is YES
  5125. reserved_word_extra_break=no        # Keyword BREAK
  5126.    ###< create table crash_me10 (BREAK int not null)
  5127.    ###> OK
  5128.    ###< drop table crash_me10 
  5129.    ###> OK
  5130.    ###
  5131.    ###As far as all queries returned OK, result is NO
  5132. reserved_word_extra_browse=no        # Keyword BROWSE
  5133.    ###< create table crash_me10 (BROWSE int not null)
  5134.    ###> OK
  5135.    ###< drop table crash_me10 
  5136.    ###> OK
  5137.    ###
  5138.    ###As far as all queries returned OK, result is NO
  5139. reserved_word_extra_btree=no        # Keyword BTREE
  5140.    ###< create table crash_me10 (BTREE int not null)
  5141.    ###> OK
  5142.    ###< drop table crash_me10 
  5143.    ###> OK
  5144.    ###
  5145.    ###As far as all queries returned OK, result is NO
  5146. reserved_word_extra_bulk=no        # Keyword BULK
  5147.    ###< create table crash_me10 (BULK int not null)
  5148.    ###> OK
  5149.    ###< drop table crash_me10 
  5150.    ###> OK
  5151.    ###
  5152.    ###As far as all queries returned OK, result is NO
  5153. reserved_word_extra_change=yes        # Keyword CHANGE
  5154.    ###< create table crash_me10 (CHANGE int not null)
  5155.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CHANGE int not null)' at line 1
  5156.    ###< drop table crash_me10 
  5157.    ###> execute error:Unknown table 'crash_me10'
  5158.    ###
  5159.    ###As far as some queries didnt return OK, result is YES
  5160. reserved_word_extra_checkpoint=no    # Keyword CHECKPOINT
  5161.    ###< create table crash_me10 (CHECKPOINT int not null)
  5162.    ###> OK
  5163.    ###< drop table crash_me10 
  5164.    ###> OK
  5165.    ###
  5166.    ###As far as all queries returned OK, result is NO
  5167. reserved_word_extra_cluster=no        # Keyword CLUSTER
  5168.    ###< create table crash_me10 (CLUSTER int not null)
  5169.    ###> OK
  5170.    ###< drop table crash_me10 
  5171.    ###> OK
  5172.    ###
  5173.    ###As far as all queries returned OK, result is NO
  5174. reserved_word_extra_clustered=no    # Keyword CLUSTERED
  5175.    ###< create table crash_me10 (CLUSTERED int not null)
  5176.    ###> OK
  5177.    ###< drop table crash_me10 
  5178.    ###> OK
  5179.    ###
  5180.    ###As far as all queries returned OK, result is NO
  5181. reserved_word_extra_columns=yes        # Keyword COLUMNS
  5182.    ###< create table crash_me10 (COLUMNS int not null)
  5183.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'COLUMNS int not null)' at line 1
  5184.    ###< drop table crash_me10 
  5185.    ###> execute error:Unknown table 'crash_me10'
  5186.    ###
  5187.    ###As far as some queries didnt return OK, result is YES
  5188. reserved_word_extra_comment=no        # Keyword COMMENT
  5189.    ###< create table crash_me10 (COMMENT int not null)
  5190.    ###> OK
  5191.    ###< drop table crash_me10 
  5192.    ###> OK
  5193.    ###
  5194.    ###As far as all queries returned OK, result is NO
  5195. reserved_word_extra_compress=no        # Keyword COMPRESS
  5196.    ###< create table crash_me10 (COMPRESS int not null)
  5197.    ###> OK
  5198.    ###< drop table crash_me10 
  5199.    ###> OK
  5200.    ###
  5201.    ###As far as all queries returned OK, result is NO
  5202. reserved_word_extra_compute=no        # Keyword COMPUTE
  5203.    ###< create table crash_me10 (COMPUTE int not null)
  5204.    ###> OK
  5205.    ###< drop table crash_me10 
  5206.    ###> OK
  5207.    ###
  5208.    ###As far as all queries returned OK, result is NO
  5209. reserved_word_extra_containstable=no    # Keyword CONTAINSTABLE
  5210.    ###< create table crash_me10 (CONTAINSTABLE int not null)
  5211.    ###> OK
  5212.    ###< drop table crash_me10 
  5213.    ###> OK
  5214.    ###
  5215.    ###As far as all queries returned OK, result is NO
  5216. reserved_word_extra_database=yes    # Keyword DATABASE
  5217.    ###< create table crash_me10 (DATABASE int not null)
  5218.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATABASE int not null)' at line 1
  5219.    ###< drop table crash_me10 
  5220.    ###> execute error:Unknown table 'crash_me10'
  5221.    ###
  5222.    ###As far as some queries didnt return OK, result is YES
  5223. reserved_word_extra_databases=yes    # Keyword DATABASES
  5224.    ###< create table crash_me10 (DATABASES int not null)
  5225.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATABASES int not null)' at line 1
  5226.    ###< drop table crash_me10 
  5227.    ###> execute error:Unknown table 'crash_me10'
  5228.    ###
  5229.    ###As far as some queries didnt return OK, result is YES
  5230. reserved_word_extra_day_hour=yes    # Keyword DAY_HOUR
  5231.    ###< create table crash_me10 (DAY_HOUR int not null)
  5232.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DAY_HOUR int not null)' at line 1
  5233.    ###< drop table crash_me10 
  5234.    ###> execute error:Unknown table 'crash_me10'
  5235.    ###
  5236.    ###As far as some queries didnt return OK, result is YES
  5237. reserved_word_extra_day_minute=yes    # Keyword DAY_MINUTE
  5238.    ###< create table crash_me10 (DAY_MINUTE int not null)
  5239.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DAY_MINUTE int not null)' at line 1
  5240.    ###< drop table crash_me10 
  5241.    ###> execute error:Unknown table 'crash_me10'
  5242.    ###
  5243.    ###As far as some queries didnt return OK, result is YES
  5244. reserved_word_extra_day_second=yes    # Keyword DAY_SECOND
  5245.    ###< create table crash_me10 (DAY_SECOND int not null)
  5246.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DAY_SECOND int not null)' at line 1
  5247.    ###< drop table crash_me10 
  5248.    ###> execute error:Unknown table 'crash_me10'
  5249.    ###
  5250.    ###As far as some queries didnt return OK, result is YES
  5251. reserved_word_extra_dbcc=no        # Keyword DBCC
  5252.    ###< create table crash_me10 (DBCC int not null)
  5253.    ###> OK
  5254.    ###< drop table crash_me10 
  5255.    ###> OK
  5256.    ###
  5257.    ###As far as all queries returned OK, result is NO
  5258. reserved_word_extra_delayed=yes        # Keyword DELAYED
  5259.    ###< create table crash_me10 (DELAYED int not null)
  5260.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELAYED int not null)' at line 1
  5261.    ###< drop table crash_me10 
  5262.    ###> execute error:Unknown table 'crash_me10'
  5263.    ###
  5264.    ###As far as some queries didnt return OK, result is YES
  5265. reserved_word_extra_deny=no        # Keyword DENY
  5266.    ###< create table crash_me10 (DENY int not null)
  5267.    ###> OK
  5268.    ###< drop table crash_me10 
  5269.    ###> OK
  5270.    ###
  5271.    ###As far as all queries returned OK, result is NO
  5272. reserved_word_extra_disk=no        # Keyword DISK
  5273.    ###< create table crash_me10 (DISK int not null)
  5274.    ###> OK
  5275.    ###< drop table crash_me10 
  5276.    ###> OK
  5277.    ###
  5278.    ###As far as all queries returned OK, result is NO
  5279. reserved_word_extra_distinctrow=yes    # Keyword DISTINCTROW
  5280.    ###< create table crash_me10 (DISTINCTROW int not null)
  5281.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DISTINCTROW int not null)' at line 1
  5282.    ###< drop table crash_me10 
  5283.    ###> execute error:Unknown table 'crash_me10'
  5284.    ###
  5285.    ###As far as some queries didnt return OK, result is YES
  5286. reserved_word_extra_distributed=no    # Keyword DISTRIBUTED
  5287.    ###< create table crash_me10 (DISTRIBUTED int not null)
  5288.    ###> OK
  5289.    ###< drop table crash_me10 
  5290.    ###> OK
  5291.    ###
  5292.    ###As far as all queries returned OK, result is NO
  5293. reserved_word_extra_dummy=no        # Keyword DUMMY
  5294.    ###< create table crash_me10 (DUMMY int not null)
  5295.    ###> OK
  5296.    ###< drop table crash_me10 
  5297.    ###> OK
  5298.    ###
  5299.    ###As far as all queries returned OK, result is NO
  5300. reserved_word_extra_dump=no        # Keyword DUMP
  5301.    ###< create table crash_me10 (DUMP int not null)
  5302.    ###> OK
  5303.    ###< drop table crash_me10 
  5304.    ###> OK
  5305.    ###
  5306.    ###As far as all queries returned OK, result is NO
  5307. reserved_word_extra_enclosed=yes    # Keyword ENCLOSED
  5308.    ###< create table crash_me10 (ENCLOSED int not null)
  5309.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ENCLOSED int not null)' at line 1
  5310.    ###< drop table crash_me10 
  5311.    ###> execute error:Unknown table 'crash_me10'
  5312.    ###
  5313.    ###As far as some queries didnt return OK, result is YES
  5314. reserved_word_extra_errlvl=no        # Keyword ERRLVL
  5315.    ###< create table crash_me10 (ERRLVL int not null)
  5316.    ###> OK
  5317.    ###< drop table crash_me10 
  5318.    ###> OK
  5319.    ###
  5320.    ###As far as all queries returned OK, result is NO
  5321. reserved_word_extra_errors=no        # Keyword ERRORS
  5322.    ###< create table crash_me10 (ERRORS int not null)
  5323.    ###> OK
  5324.    ###< drop table crash_me10 
  5325.    ###> OK
  5326.    ###
  5327.    ###As far as all queries returned OK, result is NO
  5328. reserved_word_extra_escaped=yes        # Keyword ESCAPED
  5329.    ###< create table crash_me10 (ESCAPED int not null)
  5330.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ESCAPED int not null)' at line 1
  5331.    ###< drop table crash_me10 
  5332.    ###> execute error:Unknown table 'crash_me10'
  5333.    ###
  5334.    ###As far as some queries didnt return OK, result is YES
  5335. reserved_word_extra_exclusive=no    # Keyword EXCLUSIVE
  5336.    ###< create table crash_me10 (EXCLUSIVE int not null)
  5337.    ###> OK
  5338.    ###< drop table crash_me10 
  5339.    ###> OK
  5340.    ###
  5341.    ###As far as all queries returned OK, result is NO
  5342. reserved_word_extra_explain=yes        # Keyword EXPLAIN
  5343.    ###< create table crash_me10 (EXPLAIN int not null)
  5344.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'EXPLAIN int not null)' at line 1
  5345.    ###< drop table crash_me10 
  5346.    ###> execute error:Unknown table 'crash_me10'
  5347.    ###
  5348.    ###As far as some queries didnt return OK, result is YES
  5349. reserved_word_extra_fields=yes        # Keyword FIELDS
  5350.    ###< create table crash_me10 (FIELDS int not null)
  5351.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FIELDS int not null)' at line 1
  5352.    ###< drop table crash_me10 
  5353.    ###> execute error:Unknown table 'crash_me10'
  5354.    ###
  5355.    ###As far as some queries didnt return OK, result is YES
  5356. reserved_word_extra_file=no        # Keyword FILE
  5357.    ###< create table crash_me10 (FILE int not null)
  5358.    ###> OK
  5359.    ###< drop table crash_me10 
  5360.    ###> OK
  5361.    ###
  5362.    ###As far as all queries returned OK, result is NO
  5363. reserved_word_extra_fillfactor=no    # Keyword FILLFACTOR
  5364.    ###< create table crash_me10 (FILLFACTOR int not null)
  5365.    ###> OK
  5366.    ###< drop table crash_me10 
  5367.    ###> OK
  5368.    ###
  5369.    ###As far as all queries returned OK, result is NO
  5370. reserved_word_extra_freetext=no        # Keyword FREETEXT
  5371.    ###< create table crash_me10 (FREETEXT int not null)
  5372.    ###> OK
  5373.    ###< drop table crash_me10 
  5374.    ###> OK
  5375.    ###
  5376.    ###As far as all queries returned OK, result is NO
  5377. reserved_word_extra_freetexttable=no    # Keyword FREETEXTTABLE
  5378.    ###< create table crash_me10 (FREETEXTTABLE int not null)
  5379.    ###> OK
  5380.    ###< drop table crash_me10 
  5381.    ###> OK
  5382.    ###
  5383.    ###As far as all queries returned OK, result is NO
  5384. reserved_word_extra_fulltext=yes    # Keyword FULLTEXT
  5385.    ###< create table crash_me10 (FULLTEXT int not null)
  5386.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
  5387.    ###< drop table crash_me10 
  5388.    ###> execute error:Unknown table 'crash_me10'
  5389.    ###
  5390.    ###As far as some queries didnt return OK, result is YES
  5391. reserved_word_extra_geometry=no        # Keyword GEOMETRY
  5392.    ###< create table crash_me10 (GEOMETRY int not null)
  5393.    ###> OK
  5394.    ###< drop table crash_me10 
  5395.    ###> OK
  5396.    ###
  5397.    ###As far as all queries returned OK, result is NO
  5398. reserved_word_extra_hash=no        # Keyword HASH
  5399.    ###< create table crash_me10 (HASH int not null)
  5400.    ###> OK
  5401.    ###< drop table crash_me10 
  5402.    ###> OK
  5403.    ###
  5404.    ###As far as all queries returned OK, result is NO
  5405. reserved_word_extra_high_priority=yes    # Keyword HIGH_PRIORITY
  5406.    ###< create table crash_me10 (HIGH_PRIORITY int not null)
  5407.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'HIGH_PRIORITY int not null)' at line 1
  5408.    ###< drop table crash_me10 
  5409.    ###> execute error:Unknown table 'crash_me10'
  5410.    ###
  5411.    ###As far as some queries didnt return OK, result is YES
  5412. reserved_word_extra_holdlock=no        # Keyword HOLDLOCK
  5413.    ###< create table crash_me10 (HOLDLOCK int not null)
  5414.    ###> OK
  5415.    ###< drop table crash_me10 
  5416.    ###> OK
  5417.    ###
  5418.    ###As far as all queries returned OK, result is NO
  5419. reserved_word_extra_hour_minute=yes    # Keyword HOUR_MINUTE
  5420.    ###< create table crash_me10 (HOUR_MINUTE int not null)
  5421.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'HOUR_MINUTE int not null)' at line 1
  5422.    ###< drop table crash_me10 
  5423.    ###> execute error:Unknown table 'crash_me10'
  5424.    ###
  5425.    ###As far as some queries didnt return OK, result is YES
  5426. reserved_word_extra_hour_second=yes    # Keyword HOUR_SECOND
  5427.    ###< create table crash_me10 (HOUR_SECOND int not null)
  5428.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'HOUR_SECOND int not null)' at line 1
  5429.    ###< drop table crash_me10 
  5430.    ###> execute error:Unknown table 'crash_me10'
  5431.    ###
  5432.    ###As far as some queries didnt return OK, result is YES
  5433. reserved_word_extra_identified=no    # Keyword IDENTIFIED
  5434.    ###< create table crash_me10 (IDENTIFIED int not null)
  5435.    ###> OK
  5436.    ###< drop table crash_me10 
  5437.    ###> OK
  5438.    ###
  5439.    ###As far as all queries returned OK, result is NO
  5440. reserved_word_extra_identity_insert=no    # Keyword IDENTITY_INSERT
  5441.    ###< create table crash_me10 (IDENTITY_INSERT int not null)
  5442.    ###> OK
  5443.    ###< drop table crash_me10 
  5444.    ###> OK
  5445.    ###
  5446.    ###As far as all queries returned OK, result is NO
  5447. reserved_word_extra_identitycol=no    # Keyword IDENTITYCOL
  5448.    ###< create table crash_me10 (IDENTITYCOL int not null)
  5449.    ###> OK
  5450.    ###< drop table crash_me10 
  5451.    ###> OK
  5452.    ###
  5453.    ###As far as all queries returned OK, result is NO
  5454. reserved_word_extra_increment=no    # Keyword INCREMENT
  5455.    ###< create table crash_me10 (INCREMENT int not null)
  5456.    ###> OK
  5457.    ###< drop table crash_me10 
  5458.    ###> OK
  5459.    ###
  5460.    ###As far as all queries returned OK, result is NO
  5461. reserved_word_extra_index=yes        # Keyword INDEX
  5462.    ###< create table crash_me10 (INDEX int not null)
  5463.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'int not null)' at line 1
  5464.    ###< drop table crash_me10 
  5465.    ###> execute error:Unknown table 'crash_me10'
  5466.    ###
  5467.    ###As far as some queries didnt return OK, result is YES
  5468. reserved_word_extra_infile=yes        # Keyword INFILE
  5469.    ###< create table crash_me10 (INFILE int not null)
  5470.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'INFILE int not null)' at line 1
  5471.    ###< drop table crash_me10 
  5472.    ###> execute error:Unknown table 'crash_me10'
  5473.    ###
  5474.    ###As far as some queries didnt return OK, result is YES
  5475. reserved_word_extra_initial=no        # Keyword INITIAL
  5476.    ###< create table crash_me10 (INITIAL int not null)
  5477.    ###> OK
  5478.    ###< drop table crash_me10 
  5479.    ###> OK
  5480.    ###
  5481.    ###As far as all queries returned OK, result is NO
  5482. reserved_word_extra_innodb=no        # Keyword INNODB
  5483.    ###< create table crash_me10 (INNODB int not null)
  5484.    ###> OK
  5485.    ###< drop table crash_me10 
  5486.    ###> OK
  5487.    ###
  5488.    ###As far as all queries returned OK, result is NO
  5489. reserved_word_extra_keys=yes        # Keyword KEYS
  5490.    ###< create table crash_me10 (KEYS int not null)
  5491.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'KEYS int not null)' at line 1
  5492.    ###< drop table crash_me10 
  5493.    ###> execute error:Unknown table 'crash_me10'
  5494.    ###
  5495.    ###As far as some queries didnt return OK, result is YES
  5496. reserved_word_extra_kill=yes        # Keyword KILL
  5497.    ###< create table crash_me10 (KILL int not null)
  5498.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'KILL int not null)' at line 1
  5499.    ###< drop table crash_me10 
  5500.    ###> execute error:Unknown table 'crash_me10'
  5501.    ###
  5502.    ###As far as some queries didnt return OK, result is YES
  5503. reserved_word_extra_lineno=no        # Keyword LINENO
  5504.    ###< create table crash_me10 (LINENO int not null)
  5505.    ###> OK
  5506.    ###< drop table crash_me10 
  5507.    ###> OK
  5508.    ###
  5509.    ###As far as all queries returned OK, result is NO
  5510. reserved_word_extra_lines=yes        # Keyword LINES
  5511.    ###< create table crash_me10 (LINES int not null)
  5512.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LINES int not null)' at line 1
  5513.    ###< drop table crash_me10 
  5514.    ###> execute error:Unknown table 'crash_me10'
  5515.    ###
  5516.    ###As far as some queries didnt return OK, result is YES
  5517. reserved_word_extra_load=yes        # Keyword LOAD
  5518.    ###< create table crash_me10 (LOAD int not null)
  5519.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOAD int not null)' at line 1
  5520.    ###< drop table crash_me10 
  5521.    ###> execute error:Unknown table 'crash_me10'
  5522.    ###
  5523.    ###As far as some queries didnt return OK, result is YES
  5524. reserved_word_extra_lock=yes        # Keyword LOCK
  5525.    ###< create table crash_me10 (LOCK int not null)
  5526.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOCK int not null)' at line 1
  5527.    ###< drop table crash_me10 
  5528.    ###> execute error:Unknown table 'crash_me10'
  5529.    ###
  5530.    ###As far as some queries didnt return OK, result is YES
  5531. reserved_word_extra_long=yes        # Keyword LONG
  5532.    ###< create table crash_me10 (LONG int not null)
  5533.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LONG int not null)' at line 1
  5534.    ###< drop table crash_me10 
  5535.    ###> execute error:Unknown table 'crash_me10'
  5536.    ###
  5537.    ###As far as some queries didnt return OK, result is YES
  5538. reserved_word_extra_longblob=yes    # Keyword LONGBLOB
  5539.    ###< create table crash_me10 (LONGBLOB int not null)
  5540.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LONGBLOB int not null)' at line 1
  5541.    ###< drop table crash_me10 
  5542.    ###> execute error:Unknown table 'crash_me10'
  5543.    ###
  5544.    ###As far as some queries didnt return OK, result is YES
  5545. reserved_word_extra_longtext=yes    # Keyword LONGTEXT
  5546.    ###< create table crash_me10 (LONGTEXT int not null)
  5547.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LONGTEXT int not null)' at line 1
  5548.    ###< drop table crash_me10 
  5549.    ###> execute error:Unknown table 'crash_me10'
  5550.    ###
  5551.    ###As far as some queries didnt return OK, result is YES
  5552. reserved_word_extra_low_priority=yes    # Keyword LOW_PRIORITY
  5553.    ###< create table crash_me10 (LOW_PRIORITY int not null)
  5554.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'LOW_PRIORITY int not null)' at line 1
  5555.    ###< drop table crash_me10 
  5556.    ###> execute error:Unknown table 'crash_me10'
  5557.    ###
  5558.    ###As far as some queries didnt return OK, result is YES
  5559. reserved_word_extra_master_server_id=yes    # Keyword MASTER_SERVER_ID
  5560.    ###< create table crash_me10 (MASTER_SERVER_ID int not null)
  5561.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MASTER_SERVER_ID int not null)' at line 1
  5562.    ###< drop table crash_me10 
  5563.    ###> execute error:Unknown table 'crash_me10'
  5564.    ###
  5565.    ###As far as some queries didnt return OK, result is YES
  5566. reserved_word_extra_maxextents=no    # Keyword MAXEXTENTS
  5567.    ###< create table crash_me10 (MAXEXTENTS int not null)
  5568.    ###> OK
  5569.    ###< drop table crash_me10 
  5570.    ###> OK
  5571.    ###
  5572.    ###As far as all queries returned OK, result is NO
  5573. reserved_word_extra_mediumblob=yes    # Keyword MEDIUMBLOB
  5574.    ###< create table crash_me10 (MEDIUMBLOB int not null)
  5575.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MEDIUMBLOB int not null)' at line 1
  5576.    ###< drop table crash_me10 
  5577.    ###> execute error:Unknown table 'crash_me10'
  5578.    ###
  5579.    ###As far as some queries didnt return OK, result is YES
  5580. reserved_word_extra_mediumint=yes    # Keyword MEDIUMINT
  5581.    ###< create table crash_me10 (MEDIUMINT int not null)
  5582.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MEDIUMINT int not null)' at line 1
  5583.    ###< drop table crash_me10 
  5584.    ###> execute error:Unknown table 'crash_me10'
  5585.    ###
  5586.    ###As far as some queries didnt return OK, result is YES
  5587. reserved_word_extra_mediumtext=yes    # Keyword MEDIUMTEXT
  5588.    ###< create table crash_me10 (MEDIUMTEXT int not null)
  5589.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MEDIUMTEXT int not null)' at line 1
  5590.    ###< drop table crash_me10 
  5591.    ###> execute error:Unknown table 'crash_me10'
  5592.    ###
  5593.    ###As far as some queries didnt return OK, result is YES
  5594. reserved_word_extra_middleint=yes    # Keyword MIDDLEINT
  5595.    ###< create table crash_me10 (MIDDLEINT int not null)
  5596.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MIDDLEINT int not null)' at line 1
  5597.    ###< drop table crash_me10 
  5598.    ###> execute error:Unknown table 'crash_me10'
  5599.    ###
  5600.    ###As far as some queries didnt return OK, result is YES
  5601. reserved_word_extra_minus=no        # Keyword MINUS
  5602.    ###< create table crash_me10 (MINUS int not null)
  5603.    ###> OK
  5604.    ###< drop table crash_me10 
  5605.    ###> OK
  5606.    ###
  5607.    ###As far as all queries returned OK, result is NO
  5608. reserved_word_extra_minute_second=yes    # Keyword MINUTE_SECOND
  5609.    ###< create table crash_me10 (MINUTE_SECOND int not null)
  5610.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'MINUTE_SECOND int not null)' at line 1
  5611.    ###< drop table crash_me10 
  5612.    ###> execute error:Unknown table 'crash_me10'
  5613.    ###
  5614.    ###As far as some queries didnt return OK, result is YES
  5615. reserved_word_extra_mlslabel=no        # Keyword MLSLABEL
  5616.    ###< create table crash_me10 (MLSLABEL int not null)
  5617.    ###> OK
  5618.    ###< drop table crash_me10 
  5619.    ###> OK
  5620.    ###
  5621.    ###As far as all queries returned OK, result is NO
  5622. reserved_word_extra_mode=no        # Keyword MODE
  5623.    ###< create table crash_me10 (MODE int not null)
  5624.    ###> OK
  5625.    ###< drop table crash_me10 
  5626.    ###> OK
  5627.    ###
  5628.    ###As far as all queries returned OK, result is NO
  5629. reserved_word_extra_mrg_myisam=no    # Keyword MRG_MYISAM
  5630.    ###< create table crash_me10 (MRG_MYISAM int not null)
  5631.    ###> OK
  5632.    ###< drop table crash_me10 
  5633.    ###> OK
  5634.    ###
  5635.    ###As far as all queries returned OK, result is NO
  5636. reserved_word_extra_noaudit=no        # Keyword NOAUDIT
  5637.    ###< create table crash_me10 (NOAUDIT int not null)
  5638.    ###> OK
  5639.    ###< drop table crash_me10 
  5640.    ###> OK
  5641.    ###
  5642.    ###As far as all queries returned OK, result is NO
  5643. reserved_word_extra_nocheck=no        # Keyword NOCHECK
  5644.    ###< create table crash_me10 (NOCHECK int not null)
  5645.    ###> OK
  5646.    ###< drop table crash_me10 
  5647.    ###> OK
  5648.    ###
  5649.    ###As far as all queries returned OK, result is NO
  5650. reserved_word_extra_nocompress=no    # Keyword NOCOMPRESS
  5651.    ###< create table crash_me10 (NOCOMPRESS int not null)
  5652.    ###> OK
  5653.    ###< drop table crash_me10 
  5654.    ###> OK
  5655.    ###
  5656.    ###As far as all queries returned OK, result is NO
  5657. reserved_word_extra_nonclustered=no    # Keyword NONCLUSTERED
  5658.    ###< create table crash_me10 (NONCLUSTERED int not null)
  5659.    ###> OK
  5660.    ###< drop table crash_me10 
  5661.    ###> OK
  5662.    ###
  5663.    ###As far as all queries returned OK, result is NO
  5664. reserved_word_extra_nowait=no        # Keyword NOWAIT
  5665.    ###< create table crash_me10 (NOWAIT int not null)
  5666.    ###> OK
  5667.    ###< drop table crash_me10 
  5668.    ###> OK
  5669.    ###
  5670.    ###As far as all queries returned OK, result is NO
  5671. reserved_word_extra_number=no        # Keyword NUMBER
  5672.    ###< create table crash_me10 (NUMBER int not null)
  5673.    ###> OK
  5674.    ###< drop table crash_me10 
  5675.    ###> OK
  5676.    ###
  5677.    ###As far as all queries returned OK, result is NO
  5678. reserved_word_extra_offline=no        # Keyword OFFLINE
  5679.    ###< create table crash_me10 (OFFLINE int not null)
  5680.    ###> OK
  5681.    ###< drop table crash_me10 
  5682.    ###> OK
  5683.    ###
  5684.    ###As far as all queries returned OK, result is NO
  5685. reserved_word_extra_offsets=no        # Keyword OFFSETS
  5686.    ###< create table crash_me10 (OFFSETS int not null)
  5687.    ###> OK
  5688.    ###< drop table crash_me10 
  5689.    ###> OK
  5690.    ###
  5691.    ###As far as all queries returned OK, result is NO
  5692. reserved_word_extra_online=no        # Keyword ONLINE
  5693.    ###< create table crash_me10 (ONLINE int not null)
  5694.    ###> OK
  5695.    ###< drop table crash_me10 
  5696.    ###> OK
  5697.    ###
  5698.    ###As far as all queries returned OK, result is NO
  5699. reserved_word_extra_opendatasource=no    # Keyword OPENDATASOURCE
  5700.    ###< create table crash_me10 (OPENDATASOURCE int not null)
  5701.    ###> OK
  5702.    ###< drop table crash_me10 
  5703.    ###> OK
  5704.    ###
  5705.    ###As far as all queries returned OK, result is NO
  5706. reserved_word_extra_openquery=no    # Keyword OPENQUERY
  5707.    ###< create table crash_me10 (OPENQUERY int not null)
  5708.    ###> OK
  5709.    ###< drop table crash_me10 
  5710.    ###> OK
  5711.    ###
  5712.    ###As far as all queries returned OK, result is NO
  5713. reserved_word_extra_openrowset=no    # Keyword OPENROWSET
  5714.    ###< create table crash_me10 (OPENROWSET int not null)
  5715.    ###> OK
  5716.    ###< drop table crash_me10 
  5717.    ###> OK
  5718.    ###
  5719.    ###As far as all queries returned OK, result is NO
  5720. reserved_word_extra_openxml=no        # Keyword OPENXML
  5721.    ###< create table crash_me10 (OPENXML int not null)
  5722.    ###> OK
  5723.    ###< drop table crash_me10 
  5724.    ###> OK
  5725.    ###
  5726.    ###As far as all queries returned OK, result is NO
  5727. reserved_word_extra_optimize=yes    # Keyword OPTIMIZE
  5728.    ###< create table crash_me10 (OPTIMIZE int not null)
  5729.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTIMIZE int not null)' at line 1
  5730.    ###< drop table crash_me10 
  5731.    ###> execute error:Unknown table 'crash_me10'
  5732.    ###
  5733.    ###As far as some queries didnt return OK, result is YES
  5734. reserved_word_extra_optionally=yes    # Keyword OPTIONALLY
  5735.    ###< create table crash_me10 (OPTIONALLY int not null)
  5736.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTIONALLY int not null)' at line 1
  5737.    ###< drop table crash_me10 
  5738.    ###> execute error:Unknown table 'crash_me10'
  5739.    ###
  5740.    ###As far as some queries didnt return OK, result is YES
  5741. reserved_word_extra_outfile=yes        # Keyword OUTFILE
  5742.    ###< create table crash_me10 (OUTFILE int not null)
  5743.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'OUTFILE int not null)' at line 1
  5744.    ###< drop table crash_me10 
  5745.    ###> execute error:Unknown table 'crash_me10'
  5746.    ###
  5747.    ###As far as some queries didnt return OK, result is YES
  5748. reserved_word_extra_over=no        # Keyword OVER
  5749.    ###< create table crash_me10 (OVER int not null)
  5750.    ###> OK
  5751.    ###< drop table crash_me10 
  5752.    ###> OK
  5753.    ###
  5754.    ###As far as all queries returned OK, result is NO
  5755. reserved_word_extra_pctfree=no        # Keyword PCTFREE
  5756.    ###< create table crash_me10 (PCTFREE int not null)
  5757.    ###> OK
  5758.    ###< drop table crash_me10 
  5759.    ###> OK
  5760.    ###
  5761.    ###As far as all queries returned OK, result is NO
  5762. reserved_word_extra_percent=no        # Keyword PERCENT
  5763.    ###< create table crash_me10 (PERCENT int not null)
  5764.    ###> OK
  5765.    ###< drop table crash_me10 
  5766.    ###> OK
  5767.    ###
  5768.    ###As far as all queries returned OK, result is NO
  5769. reserved_word_extra_plan=no        # Keyword PLAN
  5770.    ###< create table crash_me10 (PLAN int not null)
  5771.    ###> OK
  5772.    ###< drop table crash_me10 
  5773.    ###> OK
  5774.    ###
  5775.    ###As far as all queries returned OK, result is NO
  5776. reserved_word_extra_print=no        # Keyword PRINT
  5777.    ###< create table crash_me10 (PRINT int not null)
  5778.    ###> OK
  5779.    ###< drop table crash_me10 
  5780.    ###> OK
  5781.    ###
  5782.    ###As far as all queries returned OK, result is NO
  5783. reserved_word_extra_proc=no        # Keyword PROC
  5784.    ###< create table crash_me10 (PROC int not null)
  5785.    ###> OK
  5786.    ###< drop table crash_me10 
  5787.    ###> OK
  5788.    ###
  5789.    ###As far as all queries returned OK, result is NO
  5790. reserved_word_extra_purge=yes        # Keyword PURGE
  5791.    ###< create table crash_me10 (PURGE int not null)
  5792.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'PURGE int not null)' at line 1
  5793.    ###< drop table crash_me10 
  5794.    ###> execute error:Unknown table 'crash_me10'
  5795.    ###
  5796.    ###As far as some queries didnt return OK, result is YES
  5797. reserved_word_extra_raiserror=no    # Keyword RAISERROR
  5798.    ###< create table crash_me10 (RAISERROR int not null)
  5799.    ###> OK
  5800.    ###< drop table crash_me10 
  5801.    ###> OK
  5802.    ###
  5803.    ###As far as all queries returned OK, result is NO
  5804. reserved_word_extra_raw=no        # Keyword RAW
  5805.    ###< create table crash_me10 (RAW int not null)
  5806.    ###> OK
  5807.    ###< drop table crash_me10 
  5808.    ###> OK
  5809.    ###
  5810.    ###As far as all queries returned OK, result is NO
  5811. reserved_word_extra_readtext=no        # Keyword READTEXT
  5812.    ###< create table crash_me10 (READTEXT int not null)
  5813.    ###> OK
  5814.    ###< drop table crash_me10 
  5815.    ###> OK
  5816.    ###
  5817.    ###As far as all queries returned OK, result is NO
  5818. reserved_word_extra_reconfigure=no    # Keyword RECONFIGURE
  5819.    ###< create table crash_me10 (RECONFIGURE int not null)
  5820.    ###> OK
  5821.    ###< drop table crash_me10 
  5822.    ###> OK
  5823.    ###
  5824.    ###As far as all queries returned OK, result is NO
  5825. reserved_word_extra_regexp=yes        # Keyword REGEXP
  5826.    ###< create table crash_me10 (REGEXP int not null)
  5827.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REGEXP int not null)' at line 1
  5828.    ###< drop table crash_me10 
  5829.    ###> execute error:Unknown table 'crash_me10'
  5830.    ###
  5831.    ###As far as some queries didnt return OK, result is YES
  5832. reserved_word_extra_rename=yes        # Keyword RENAME
  5833.    ###< create table crash_me10 (RENAME int not null)
  5834.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'RENAME int not null)' at line 1
  5835.    ###< drop table crash_me10 
  5836.    ###> execute error:Unknown table 'crash_me10'
  5837.    ###
  5838.    ###As far as some queries didnt return OK, result is YES
  5839. reserved_word_extra_replication=no    # Keyword REPLICATION
  5840.    ###< create table crash_me10 (REPLICATION int not null)
  5841.    ###> OK
  5842.    ###< drop table crash_me10 
  5843.    ###> OK
  5844.    ###
  5845.    ###As far as all queries returned OK, result is NO
  5846. reserved_word_extra_require=yes        # Keyword REQUIRE
  5847.    ###< create table crash_me10 (REQUIRE int not null)
  5848.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'REQUIRE int not null)' at line 1
  5849.    ###< drop table crash_me10 
  5850.    ###> execute error:Unknown table 'crash_me10'
  5851.    ###
  5852.    ###As far as some queries didnt return OK, result is YES
  5853. reserved_word_extra_resource=no        # Keyword RESOURCE
  5854.    ###< create table crash_me10 (RESOURCE int not null)
  5855.    ###> OK
  5856.    ###< drop table crash_me10 
  5857.    ###> OK
  5858.    ###
  5859.    ###As far as all queries returned OK, result is NO
  5860. reserved_word_extra_restore=no        # Keyword RESTORE
  5861.    ###< create table crash_me10 (RESTORE int not null)
  5862.    ###> OK
  5863.    ###< drop table crash_me10 
  5864.    ###> OK
  5865.    ###
  5866.    ###As far as all queries returned OK, result is NO
  5867. reserved_word_extra_rlike=yes        # Keyword RLIKE
  5868.    ###< create table crash_me10 (RLIKE int not null)
  5869.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'RLIKE int not null)' at line 1
  5870.    ###< drop table crash_me10 
  5871.    ###> execute error:Unknown table 'crash_me10'
  5872.    ###
  5873.    ###As far as some queries didnt return OK, result is YES
  5874. reserved_word_extra_rowcount=no        # Keyword ROWCOUNT
  5875.    ###< create table crash_me10 (ROWCOUNT int not null)
  5876.    ###> OK
  5877.    ###< drop table crash_me10 
  5878.    ###> OK
  5879.    ###
  5880.    ###As far as all queries returned OK, result is NO
  5881. reserved_word_extra_rowguidcol=no    # Keyword ROWGUIDCOL
  5882.    ###< create table crash_me10 (ROWGUIDCOL int not null)
  5883.    ###> OK
  5884.    ###< drop table crash_me10 
  5885.    ###> OK
  5886.    ###
  5887.    ###As far as all queries returned OK, result is NO
  5888. reserved_word_extra_rowid=no        # Keyword ROWID
  5889.    ###< create table crash_me10 (ROWID int not null)
  5890.    ###> OK
  5891.    ###< drop table crash_me10 
  5892.    ###> OK
  5893.    ###
  5894.    ###As far as all queries returned OK, result is NO
  5895. reserved_word_extra_rownum=no        # Keyword ROWNUM
  5896.    ###< create table crash_me10 (ROWNUM int not null)
  5897.    ###> OK
  5898.    ###< drop table crash_me10 
  5899.    ###> OK
  5900.    ###
  5901.    ###As far as all queries returned OK, result is NO
  5902. reserved_word_extra_rtree=no        # Keyword RTREE
  5903.    ###< create table crash_me10 (RTREE int not null)
  5904.    ###> OK
  5905.    ###< drop table crash_me10 
  5906.    ###> OK
  5907.    ###
  5908.    ###As far as all queries returned OK, result is NO
  5909. reserved_word_extra_rule=no        # Keyword RULE
  5910.    ###< create table crash_me10 (RULE int not null)
  5911.    ###> OK
  5912.    ###< drop table crash_me10 
  5913.    ###> OK
  5914.    ###
  5915.    ###As far as all queries returned OK, result is NO
  5916. reserved_word_extra_save=no        # Keyword SAVE
  5917.    ###< create table crash_me10 (SAVE int not null)
  5918.    ###> OK
  5919.    ###< drop table crash_me10 
  5920.    ###> OK
  5921.    ###
  5922.    ###As far as all queries returned OK, result is NO
  5923. reserved_word_extra_setuser=no        # Keyword SETUSER
  5924.    ###< create table crash_me10 (SETUSER int not null)
  5925.    ###> OK
  5926.    ###< drop table crash_me10 
  5927.    ###> OK
  5928.    ###
  5929.    ###As far as all queries returned OK, result is NO
  5930. reserved_word_extra_share=no        # Keyword SHARE
  5931.    ###< create table crash_me10 (SHARE int not null)
  5932.    ###> OK
  5933.    ###< drop table crash_me10 
  5934.    ###> OK
  5935.    ###
  5936.    ###As far as all queries returned OK, result is NO
  5937. reserved_word_extra_show=yes        # Keyword SHOW
  5938.    ###< create table crash_me10 (SHOW int not null)
  5939.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SHOW int not null)' at line 1
  5940.    ###< drop table crash_me10 
  5941.    ###> execute error:Unknown table 'crash_me10'
  5942.    ###
  5943.    ###As far as some queries didnt return OK, result is YES
  5944. reserved_word_extra_shutdown=no        # Keyword SHUTDOWN
  5945.    ###< create table crash_me10 (SHUTDOWN int not null)
  5946.    ###> OK
  5947.    ###< drop table crash_me10 
  5948.    ###> OK
  5949.    ###
  5950.    ###As far as all queries returned OK, result is NO
  5951. reserved_word_extra_soname=yes        # Keyword SONAME
  5952.    ###< create table crash_me10 (SONAME int not null)
  5953.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SONAME int not null)' at line 1
  5954.    ###< drop table crash_me10 
  5955.    ###> execute error:Unknown table 'crash_me10'
  5956.    ###
  5957.    ###As far as some queries didnt return OK, result is YES
  5958. reserved_word_extra_spatial=no        # Keyword SPATIAL
  5959.    ###< create table crash_me10 (SPATIAL int not null)
  5960.    ###> OK
  5961.    ###< drop table crash_me10 
  5962.    ###> OK
  5963.    ###
  5964.    ###As far as all queries returned OK, result is NO
  5965. reserved_word_extra_sql_big_result=yes    # Keyword SQL_BIG_RESULT
  5966.    ###< create table crash_me10 (SQL_BIG_RESULT int not null)
  5967.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQL_BIG_RESULT int not null)' at line 1
  5968.    ###< drop table crash_me10 
  5969.    ###> execute error:Unknown table 'crash_me10'
  5970.    ###
  5971.    ###As far as some queries didnt return OK, result is YES
  5972. reserved_word_extra_sql_calc_found_rows=yes    # Keyword SQL_CALC_FOUND_ROWS
  5973.    ###< create table crash_me10 (SQL_CALC_FOUND_ROWS int not null)
  5974.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQL_CALC_FOUND_ROWS int not null)' at line 1
  5975.    ###< drop table crash_me10 
  5976.    ###> execute error:Unknown table 'crash_me10'
  5977.    ###
  5978.    ###As far as some queries didnt return OK, result is YES
  5979. reserved_word_extra_sql_small_result=yes    # Keyword SQL_SMALL_RESULT
  5980.    ###< create table crash_me10 (SQL_SMALL_RESULT int not null)
  5981.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SQL_SMALL_RESULT int not null)' at line 1
  5982.    ###< drop table crash_me10 
  5983.    ###> execute error:Unknown table 'crash_me10'
  5984.    ###
  5985.    ###As far as some queries didnt return OK, result is YES
  5986. reserved_word_extra_ssl=yes        # Keyword SSL
  5987.    ###< create table crash_me10 (SSL int not null)
  5988.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'SSL int not null)' at line 1
  5989.    ###< drop table crash_me10 
  5990.    ###> execute error:Unknown table 'crash_me10'
  5991.    ###
  5992.    ###As far as some queries didnt return OK, result is YES
  5993. reserved_word_extra_starting=yes    # Keyword STARTING
  5994.    ###< create table crash_me10 (STARTING int not null)
  5995.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'STARTING int not null)' at line 1
  5996.    ###< drop table crash_me10 
  5997.    ###> execute error:Unknown table 'crash_me10'
  5998.    ###
  5999.    ###As far as some queries didnt return OK, result is YES
  6000. reserved_word_extra_statistics=no    # Keyword STATISTICS
  6001.    ###< create table crash_me10 (STATISTICS int not null)
  6002.    ###> OK
  6003.    ###< drop table crash_me10 
  6004.    ###> OK
  6005.    ###
  6006.    ###As far as all queries returned OK, result is NO
  6007. reserved_word_extra_straight_join=yes    # Keyword STRAIGHT_JOIN
  6008.    ###< create table crash_me10 (STRAIGHT_JOIN int not null)
  6009.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'STRAIGHT_JOIN int not null)' at line 1
  6010.    ###< drop table crash_me10 
  6011.    ###> execute error:Unknown table 'crash_me10'
  6012.    ###
  6013.    ###As far as some queries didnt return OK, result is YES
  6014. reserved_word_extra_striped=no        # Keyword STRIPED
  6015.    ###< create table crash_me10 (STRIPED int not null)
  6016.    ###> OK
  6017.    ###< drop table crash_me10 
  6018.    ###> OK
  6019.    ###
  6020.    ###As far as all queries returned OK, result is NO
  6021. reserved_word_extra_successful=no    # Keyword SUCCESSFUL
  6022.    ###< create table crash_me10 (SUCCESSFUL int not null)
  6023.    ###> OK
  6024.    ###< drop table crash_me10 
  6025.    ###> OK
  6026.    ###
  6027.    ###As far as all queries returned OK, result is NO
  6028. reserved_word_extra_synonym=no        # Keyword SYNONYM
  6029.    ###< create table crash_me10 (SYNONYM int not null)
  6030.    ###> OK
  6031.    ###< drop table crash_me10 
  6032.    ###> OK
  6033.    ###
  6034.    ###As far as all queries returned OK, result is NO
  6035. reserved_word_extra_sysdate=no        # Keyword SYSDATE
  6036.    ###< create table crash_me10 (SYSDATE int not null)
  6037.    ###> OK
  6038.    ###< drop table crash_me10 
  6039.    ###> OK
  6040.    ###
  6041.    ###As far as all queries returned OK, result is NO
  6042. reserved_word_extra_tables=yes        # Keyword TABLES
  6043.    ###< create table crash_me10 (TABLES int not null)
  6044.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TABLES int not null)' at line 1
  6045.    ###< drop table crash_me10 
  6046.    ###> execute error:Unknown table 'crash_me10'
  6047.    ###
  6048.    ###As far as some queries didnt return OK, result is YES
  6049. reserved_word_extra_terminated=yes    # Keyword TERMINATED
  6050.    ###< create table crash_me10 (TERMINATED int not null)
  6051.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TERMINATED int not null)' at line 1
  6052.    ###< drop table crash_me10 
  6053.    ###> execute error:Unknown table 'crash_me10'
  6054.    ###
  6055.    ###As far as some queries didnt return OK, result is YES
  6056. reserved_word_extra_textsize=no        # Keyword TEXTSIZE
  6057.    ###< create table crash_me10 (TEXTSIZE int not null)
  6058.    ###> OK
  6059.    ###< drop table crash_me10 
  6060.    ###> OK
  6061.    ###
  6062.    ###As far as all queries returned OK, result is NO
  6063. reserved_word_extra_tinyblob=yes    # Keyword TINYBLOB
  6064.    ###< create table crash_me10 (TINYBLOB int not null)
  6065.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TINYBLOB int not null)' at line 1
  6066.    ###< drop table crash_me10 
  6067.    ###> execute error:Unknown table 'crash_me10'
  6068.    ###
  6069.    ###As far as some queries didnt return OK, result is YES
  6070. reserved_word_extra_tinyint=yes        # Keyword TINYINT
  6071.    ###< create table crash_me10 (TINYINT int not null)
  6072.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TINYINT int not null)' at line 1
  6073.    ###< drop table crash_me10 
  6074.    ###> execute error:Unknown table 'crash_me10'
  6075.    ###
  6076.    ###As far as some queries didnt return OK, result is YES
  6077. reserved_word_extra_tinytext=yes    # Keyword TINYTEXT
  6078.    ###< create table crash_me10 (TINYTEXT int not null)
  6079.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'TINYTEXT int not null)' at line 1
  6080.    ###< drop table crash_me10 
  6081.    ###> execute error:Unknown table 'crash_me10'
  6082.    ###
  6083.    ###As far as some queries didnt return OK, result is YES
  6084. reserved_word_extra_top=no        # Keyword TOP
  6085.    ###< create table crash_me10 (TOP int not null)
  6086.    ###> OK
  6087.    ###< drop table crash_me10 
  6088.    ###> OK
  6089.    ###
  6090.    ###As far as all queries returned OK, result is NO
  6091. reserved_word_extra_tran=no        # Keyword TRAN
  6092.    ###< create table crash_me10 (TRAN int not null)
  6093.    ###> OK
  6094.    ###< drop table crash_me10 
  6095.    ###> OK
  6096.    ###
  6097.    ###As far as all queries returned OK, result is NO
  6098. reserved_word_extra_truncate=no        # Keyword TRUNCATE
  6099.    ###< create table crash_me10 (TRUNCATE int not null)
  6100.    ###> OK
  6101.    ###< drop table crash_me10 
  6102.    ###> OK
  6103.    ###
  6104.    ###As far as all queries returned OK, result is NO
  6105. reserved_word_extra_tsequal=no        # Keyword TSEQUAL
  6106.    ###< create table crash_me10 (TSEQUAL int not null)
  6107.    ###> OK
  6108.    ###< drop table crash_me10 
  6109.    ###> OK
  6110.    ###
  6111.    ###As far as all queries returned OK, result is NO
  6112. reserved_word_extra_types=no        # Keyword TYPES
  6113.    ###< create table crash_me10 (TYPES int not null)
  6114.    ###> OK
  6115.    ###< drop table crash_me10 
  6116.    ###> OK
  6117.    ###
  6118.    ###As far as all queries returned OK, result is NO
  6119. reserved_word_extra_uid=no        # Keyword UID
  6120.    ###< create table crash_me10 (UID int not null)
  6121.    ###> OK
  6122.    ###< drop table crash_me10 
  6123.    ###> OK
  6124.    ###
  6125.    ###As far as all queries returned OK, result is NO
  6126. reserved_word_extra_unlock=yes        # Keyword UNLOCK
  6127.    ###< create table crash_me10 (UNLOCK int not null)
  6128.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'UNLOCK int not null)' at line 1
  6129.    ###< drop table crash_me10 
  6130.    ###> execute error:Unknown table 'crash_me10'
  6131.    ###
  6132.    ###As far as some queries didnt return OK, result is YES
  6133. reserved_word_extra_unsigned=yes    # Keyword UNSIGNED
  6134.    ###< create table crash_me10 (UNSIGNED int not null)
  6135.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'UNSIGNED int not null)' at line 1
  6136.    ###< drop table crash_me10 
  6137.    ###> execute error:Unknown table 'crash_me10'
  6138.    ###
  6139.    ###As far as some queries didnt return OK, result is YES
  6140. reserved_word_extra_updatetext=no    # Keyword UPDATETEXT
  6141.    ###< create table crash_me10 (UPDATETEXT int not null)
  6142.    ###> OK
  6143.    ###< drop table crash_me10 
  6144.    ###> OK
  6145.    ###
  6146.    ###As far as all queries returned OK, result is NO
  6147. reserved_word_extra_use=yes        # Keyword USE
  6148.    ###< create table crash_me10 (USE int not null)
  6149.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'USE int not null)' at line 1
  6150.    ###< drop table crash_me10 
  6151.    ###> execute error:Unknown table 'crash_me10'
  6152.    ###
  6153.    ###As far as some queries didnt return OK, result is YES
  6154. reserved_word_extra_user_resources=no    # Keyword USER_RESOURCES
  6155.    ###< create table crash_me10 (USER_RESOURCES int not null)
  6156.    ###> OK
  6157.    ###< drop table crash_me10 
  6158.    ###> OK
  6159.    ###
  6160.    ###As far as all queries returned OK, result is NO
  6161. reserved_word_extra_validate=no        # Keyword VALIDATE
  6162.    ###< create table crash_me10 (VALIDATE int not null)
  6163.    ###> OK
  6164.    ###< drop table crash_me10 
  6165.    ###> OK
  6166.    ###
  6167.    ###As far as all queries returned OK, result is NO
  6168. reserved_word_extra_varbinary=yes    # Keyword VARBINARY
  6169.    ###< create table crash_me10 (VARBINARY int not null)
  6170.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'VARBINARY int not null)' at line 1
  6171.    ###< drop table crash_me10 
  6172.    ###> execute error:Unknown table 'crash_me10'
  6173.    ###
  6174.    ###As far as some queries didnt return OK, result is YES
  6175. reserved_word_extra_varchar2=no        # Keyword VARCHAR2
  6176.    ###< create table crash_me10 (VARCHAR2 int not null)
  6177.    ###> OK
  6178.    ###< drop table crash_me10 
  6179.    ###> OK
  6180.    ###
  6181.    ###As far as all queries returned OK, result is NO
  6182. reserved_word_extra_waitfor=no        # Keyword WAITFOR
  6183.    ###< create table crash_me10 (WAITFOR int not null)
  6184.    ###> OK
  6185.    ###< drop table crash_me10 
  6186.    ###> OK
  6187.    ###
  6188.    ###As far as all queries returned OK, result is NO
  6189. reserved_word_extra_warnings=no        # Keyword WARNINGS
  6190.    ###< create table crash_me10 (WARNINGS int not null)
  6191.    ###> OK
  6192.    ###< drop table crash_me10 
  6193.    ###> OK
  6194.    ###
  6195.    ###As far as all queries returned OK, result is NO
  6196. reserved_word_extra_writetext=no    # Keyword WRITETEXT
  6197.    ###< create table crash_me10 (WRITETEXT int not null)
  6198.    ###> OK
  6199.    ###< drop table crash_me10 
  6200.    ###> OK
  6201.    ###
  6202.    ###As far as all queries returned OK, result is NO
  6203. reserved_word_extra_xor=yes        # Keyword XOR
  6204.    ###< create table crash_me10 (XOR int not null)
  6205.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'XOR int not null)' at line 1
  6206.    ###< drop table crash_me10 
  6207.    ###> execute error:Unknown table 'crash_me10'
  6208.    ###
  6209.    ###As far as some queries didnt return OK, result is YES
  6210. reserved_word_extra_year_month=yes    # Keyword YEAR_MONTH
  6211.    ###< create table crash_me10 (YEAR_MONTH int not null)
  6212.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'YEAR_MONTH int not null)' at line 1
  6213.    ###< drop table crash_me10 
  6214.    ###> execute error:Unknown table 'crash_me10'
  6215.    ###
  6216.    ###As far as some queries didnt return OK, result is YES
  6217. reserved_word_extra_zerofill=yes    # Keyword ZEROFILL
  6218.    ###< create table crash_me10 (ZEROFILL int not null)
  6219.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'ZEROFILL int not null)' at line 1
  6220.    ###< drop table crash_me10 
  6221.    ###> execute error:Unknown table 'crash_me10'
  6222.    ###
  6223.    ###As far as some queries didnt return OK, result is YES
  6224. right_outer_join=yes            # right outer join
  6225.    ###< select crash_me.a from crash_me right join crash_me2 ON crash_me.a=crash_me2.a
  6226.    ###> OK
  6227.    ###
  6228.    ###As far as all queries returned OK, result is YES
  6229. rollback_metadata=no            # rollback_metadata
  6230.    ###< create table crash_q (a integer not null) 
  6231.    ###> OK
  6232.    ###
  6233.    ###< insert into crash_q values (1)
  6234.    ###> OK
  6235. rowid=auto_increment            # Type for row id
  6236.    ###< create table crash_q (a rowid)
  6237.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'rowid)' at line 1
  6238.    ###< drop table crash_q 
  6239.    ###> execute error:Unknown table 'crash_q'
  6240.    ###
  6241.    ###< create table crash_q (a int not null auto_increment, primary key(a))
  6242.    ###> OK
  6243.    ###< drop table crash_q 
  6244.    ###> OK
  6245. safe_decimal_arithmetic=no        # safe decimal arithmetic
  6246.    ###< create table crash_me_a (a decimal(10,2),b decimal(10,2))
  6247.    ###> OK
  6248.    ###
  6249.    ###< insert into crash_me_a (a,b) values (11.4,18.9)
  6250.    ###> OK
  6251.    ###
  6252.    ###<select count(*) from crash_me_a where a+b=30.3
  6253.    ###>0
  6254.    ###We expected '1' but got '0' 
  6255. select_constants=yes            # Select constants
  6256.    ###< select 1 
  6257.    ###> OK
  6258.    ###
  6259.    ###As far as all queries returned OK, result is YES
  6260. select_limit=with LIMIT            # LIMIT number of rows
  6261.    ###< select * from crash_me limit 1
  6262.    ###> OK
  6263. select_limit2=yes            # SELECT with LIMIT #,#
  6264.    ###< select * from crash_me limit 1,1
  6265.    ###> OK
  6266.    ###
  6267.    ###As far as all queries returned OK, result is YES
  6268. select_limit3=yes            # SELECT with LIMIT # OFFSET #
  6269.    ###< select * from crash_me limit 1 offset 1
  6270.    ###> OK
  6271.    ###
  6272.    ###As far as all queries returned OK, result is YES
  6273. select_string_size=1048565        # constant string size in SELECT
  6274.    ###We are trying (example with N=5):
  6275.    ###select 'aaaaa'
  6276. select_table_update=no            # Update with sub select
  6277.    ###< create table crash_q (a integer,b char(10))
  6278.    ###> OK
  6279.    ###< insert into crash_q values(1,'c')
  6280.    ###> OK
  6281.    ###< update crash_q set b= (select b from crash_me where crash_q.a = crash_me.a)
  6282.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select b from crash_me where crash_q.a = crash_me.a)' at line 1
  6283.    ###
  6284.    ###< drop table crash_q 
  6285.    ###> OK
  6286. select_without_from=yes            # SELECT without FROM
  6287.    ###< select 1
  6288.    ###> OK
  6289.    ###
  6290.    ###As far as all queries returned OK, result is YES
  6291. server_version=MySQL 4.0.20 debug/    # server version
  6292. simple_joins=yes            # ANSI SQL simple joins
  6293.    ###< select crash_me.a from crash_me, crash_me t0
  6294.    ###> OK
  6295.    ###
  6296.    ###As far as all queries returned OK, result is YES
  6297. sorted_group_by=yes            # Group by always sorted
  6298.    ###< create table crash_me_t1 (a int not null, b int not null)
  6299.    ###> OK
  6300.    ###< insert into crash_me_t1 values (1,1)
  6301.    ###> OK
  6302.    ###< insert into crash_me_t1 values (1,2)
  6303.    ###> OK
  6304.    ###< insert into crash_me_t1 values (3,1)
  6305.    ###> OK
  6306.    ###< insert into crash_me_t1 values (3,2)
  6307.    ###> OK
  6308.    ###< insert into crash_me_t1 values (2,2)
  6309.    ###> OK
  6310.    ###< insert into crash_me_t1 values (2,1)
  6311.    ###> OK
  6312.    ###< create table crash_me_t2 (a int not null, b int not null)
  6313.    ###> OK
  6314.    ###< create index crash_me_t2_ind on crash_me_t2 (a)
  6315.    ###> OK
  6316.    ###< insert into crash_me_t2 values (1,3)
  6317.    ###> OK
  6318.    ###< insert into crash_me_t2 values (3,1)
  6319.    ###> OK
  6320.    ###< insert into crash_me_t2 values (2,2)
  6321.    ###> OK
  6322.    ###< insert into crash_me_t2 values (1,1)
  6323.    ###> OK
  6324.    ###
  6325.    ###< select crash_me_t1.a,crash_me_t2.b from crash_me_t1,crash_me_t2 where crash_me_t1.a=crash_me_t2.a group by crash_me_t1.a,crash_me_t2.b
  6326.    ### > 1,1
  6327.    ### > 1,3
  6328.    ### > 2,2
  6329.    ### > 3,1
  6330.    ###
  6331.    ### Check recordset:
  6332.    ### 1,1 expected: 1,1
  6333.    ### 1,3 expected: 1,3
  6334.    ### 2,2 expected: 2,2
  6335.    ### 3,1 expected: 3,1
  6336.    ### Recordset corresponds with template
  6337.    ###< drop table crash_me_t1
  6338.    ###> OK
  6339.    ###< drop table crash_me_t2
  6340.    ###> OK
  6341. storage_of_float=round            # Storage of float values
  6342.    ###< create table crash_q (q1 float(4,1))
  6343.    ###> OK
  6344.    ###< insert into crash_q values(1.14)
  6345.    ###> OK
  6346.    ###
  6347.    ###<select q1 from crash_q
  6348.    ###>1.1
  6349.    ###
  6350.    ###< drop table crash_q 
  6351.    ###> OK
  6352.    ###
  6353.    ###< create table crash_q (q1 float(4,1))
  6354.    ###> OK
  6355.    ###< insert into crash_q values(1.16)
  6356.    ###> OK
  6357.    ###
  6358.    ###<select q1 from crash_q
  6359.    ###>1.2
  6360.    ###We expected '1.1' but got '1.2' 
  6361.    ###
  6362.    ###< drop table crash_q 
  6363.    ###> OK
  6364.    ###
  6365.    ###< create table crash_q (q1 float(4,1))
  6366.    ###> OK
  6367.    ###< insert into crash_q values(1.14)
  6368.    ###> OK
  6369.    ###
  6370.    ###<select q1 from crash_q
  6371.    ###>1.1
  6372.    ###
  6373.    ###< drop table crash_q 
  6374.    ###> OK
  6375.    ###
  6376.    ###< create table crash_q (q1 float(4,1))
  6377.    ###> OK
  6378.    ###< insert into crash_q values(1.16)
  6379.    ###> OK
  6380.    ###
  6381.    ###<select q1 from crash_q
  6382.    ###>1.2
  6383.    ###
  6384.    ###< drop table crash_q 
  6385.    ###> OK
  6386. subqueries=no                # subqueries
  6387.    ###< select a from crash_me where crash_me.a in (select max(a) from crash_me)
  6388.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'select max(a) from crash_me)' at line 1
  6389.    ###
  6390.    ###As far as some queries didnt return OK, result is NO
  6391. table_alias=yes                # Table alias
  6392.    ###< select b.a from crash_me as b
  6393.    ###> OK
  6394.    ###
  6395.    ###As far as all queries returned OK, result is YES
  6396. table_name_case=no            # case independent table names
  6397.    ###< create table crash_q (q integer)
  6398.    ###> OK
  6399.    ###< drop table CRASH_Q 
  6400.    ###> execute error:Unknown table 'CRASH_Q'
  6401.    ###
  6402.    ###As far as some queries didnt return OK, result is NO
  6403. table_wildcard=yes            # Select table_name.*
  6404.    ###< select crash_me.* from crash_me
  6405.    ###> OK
  6406.    ###
  6407.    ###As far as all queries returned OK, result is YES
  6408. temporary_table=yes            # temporary tables
  6409.    ###< create temporary table crash_q (q integer not null)
  6410.    ###> OK
  6411.    ###< drop table crash_q 
  6412.    ###> OK
  6413.    ###
  6414.    ###As far as all queries returned OK, result is YES
  6415. time_format_EUR=error            # Supports HH.MM.SS (EUR) time format
  6416.    ###< insert into crash_me_t(a) values ('20.08.16')
  6417.    ###> OK
  6418.    ###
  6419.    ###<select a from crash_me_t
  6420.    ###>00:00:20
  6421.    ###We expected '20:08:16' but got '00:00:20' 
  6422.    ###
  6423.    ###< delete from crash_me_t
  6424.    ###> OK
  6425. time_format_HHHHMMSS=yes        # Supports HHHHmmSS time format
  6426.    ###< insert into crash_me_t(a) values ('00200816')
  6427.    ###> OK
  6428.    ###
  6429.    ###<select a from crash_me_t
  6430.    ###>20:08:16
  6431.    ###
  6432.    ###< delete from crash_me_t
  6433.    ###> OK
  6434. time_format_ISO=yes            # Supports HH:MM:SS (ISO) time format
  6435.    ###< insert into crash_me_t(a)  values ('20:08:16')
  6436.    ###> OK
  6437.    ###
  6438.    ###<select a from crash_me_t
  6439.    ###>20:08:16
  6440.    ###
  6441.    ###< delete from crash_me_t
  6442.    ###> OK
  6443. time_format_USA=error            # Supports HH:MM:SS (AM|PM) time format
  6444.    ###< insert into crash_me_t(a) values ('08:08:16 PM')
  6445.    ###> OK
  6446.    ###
  6447.    ###<select a from crash_me_t
  6448.    ###>08:08:16
  6449.    ###We expected '20:08:16' but got '08:08:16' 
  6450.    ###
  6451.    ###< delete from crash_me_t
  6452.    ###> OK
  6453. time_format_inresult=iso        # Time format in result
  6454.    ###< insert into crash_me_t values(CURRENT_TIME) 
  6455.    ###> OK
  6456.    ###
  6457.    ###< select a from crash_me_t
  6458.    ###> 19:55:21
  6459.    ###< delete from crash_me_t
  6460.    ###> OK
  6461.    ###< insert into crash_me_t values(CURRENT_TIME) 
  6462.    ###> OK
  6463.    ###
  6464.    ###< select a from crash_me_t
  6465.    ###> 13:45:04
  6466.    ###< delete from crash_me_t
  6467.    ###> OK
  6468.    ###< insert into crash_me_t values(CURRENT_TIME) 
  6469.    ###> OK
  6470.    ###
  6471.    ###< select a from crash_me_t
  6472.    ###> 13:47:18
  6473.    ###< delete from crash_me_t
  6474.    ###> OK
  6475. transactions=yes            # transactions
  6476.    ###<select * from crash_q
  6477.    ###>1
  6478.    ###We expected '' but got '1' 
  6479. truncate_table=yes            # truncate
  6480.    ###< create table crash_q (a integer, b integer,c1 CHAR(10))
  6481.    ###> OK
  6482.    ###< truncate table crash_q
  6483.    ###> OK
  6484.    ###< drop table crash_q 
  6485.    ###> OK
  6486.    ###
  6487.    ###As far as all queries returned OK, result is YES
  6488. type_extra_abstime=no            # Type abstime
  6489.    ###< create table crash_q (q abstime)
  6490.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'abstime)' at line 1
  6491.    ###< drop table crash_q 
  6492.    ###> execute error:Unknown table 'crash_q'
  6493.    ###
  6494.    ###As far as some queries didnt return OK, result is NO
  6495. type_extra_bfile=no            # Type bfile
  6496.    ###< create table crash_q (q bfile)
  6497.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'bfile)' at line 1
  6498.    ###< drop table crash_q 
  6499.    ###> execute error:Unknown table 'crash_q'
  6500.    ###
  6501.    ###As far as some queries didnt return OK, result is NO
  6502. type_extra_blob=yes            # Type blob
  6503.    ###< create table crash_q (q blob)
  6504.    ###> OK
  6505.    ###< drop table crash_q 
  6506.    ###> OK
  6507.    ###
  6508.    ###As far as all queries returned OK, result is YES
  6509. type_extra_bool=yes            # Type bool
  6510.    ###< create table crash_q (q bool)
  6511.    ###> OK
  6512.    ###< drop table crash_q 
  6513.    ###> OK
  6514.    ###
  6515.    ###As far as all queries returned OK, result is YES
  6516. type_extra_box=no            # Type box
  6517.    ###< create table crash_q (q box)
  6518.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'box)' at line 1
  6519.    ###< drop table crash_q 
  6520.    ###> execute error:Unknown table 'crash_q'
  6521.    ###
  6522.    ###As far as some queries didnt return OK, result is NO
  6523. type_extra_byte=no            # Type byte
  6524.    ###< create table crash_q (q byte)
  6525.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'byte)' at line 1
  6526.    ###< drop table crash_q 
  6527.    ###> execute error:Unknown table 'crash_q'
  6528.    ###
  6529.    ###As far as some queries didnt return OK, result is NO
  6530. type_extra_char(1_arg)_binary=yes    # Type char(1 arg) binary
  6531.    ###< create table crash_q (q char(10) binary)
  6532.    ###> OK
  6533.    ###< drop table crash_q 
  6534.    ###> OK
  6535.    ###
  6536.    ###As far as all queries returned OK, result is YES
  6537. type_extra_cidr=no            # Type cidr
  6538.    ###< create table crash_q (q cidr)
  6539.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'cidr)' at line 1
  6540.    ###< drop table crash_q 
  6541.    ###> execute error:Unknown table 'crash_q'
  6542.    ###
  6543.    ###As far as some queries didnt return OK, result is NO
  6544. type_extra_circle=no            # Type circle
  6545.    ###< create table crash_q (q circle)
  6546.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'circle)' at line 1
  6547.    ###< drop table crash_q 
  6548.    ###> execute error:Unknown table 'crash_q'
  6549.    ###
  6550.    ###As far as some queries didnt return OK, result is NO
  6551. type_extra_clob=no            # Type clob
  6552.    ###< create table crash_q (q clob)
  6553.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'clob)' at line 1
  6554.    ###< drop table crash_q 
  6555.    ###> execute error:Unknown table 'crash_q'
  6556.    ###
  6557.    ###As far as some queries didnt return OK, result is NO
  6558. type_extra_datetime=yes            # Type datetime
  6559.    ###< create table crash_q (q datetime)
  6560.    ###> OK
  6561.    ###< drop table crash_q 
  6562.    ###> OK
  6563.    ###
  6564.    ###As far as all queries returned OK, result is YES
  6565. type_extra_double=yes            # Type double
  6566.    ###< create table crash_q (q double)
  6567.    ###> OK
  6568.    ###< drop table crash_q 
  6569.    ###> OK
  6570.    ###
  6571.    ###As far as all queries returned OK, result is YES
  6572. type_extra_enum(1_arg)=yes        # Type enum(1 arg)
  6573.    ###< create table crash_q (q enum('red'))
  6574.    ###> OK
  6575.    ###< drop table crash_q 
  6576.    ###> OK
  6577.    ###
  6578.    ###As far as all queries returned OK, result is YES
  6579. type_extra_float(2_arg)=yes        # Type float(2 arg)
  6580.    ###< create table crash_q (q float(6,2))
  6581.    ###> OK
  6582.    ###< drop table crash_q 
  6583.    ###> OK
  6584.    ###
  6585.    ###As far as all queries returned OK, result is YES
  6586. type_extra_float4=yes            # Type float4
  6587.    ###< create table crash_q (q float4)
  6588.    ###> OK
  6589.    ###< drop table crash_q 
  6590.    ###> OK
  6591.    ###
  6592.    ###As far as all queries returned OK, result is YES
  6593. type_extra_float8=yes            # Type float8
  6594.    ###< create table crash_q (q float8)
  6595.    ###> OK
  6596.    ###< drop table crash_q 
  6597.    ###> OK
  6598.    ###
  6599.    ###As far as all queries returned OK, result is YES
  6600. type_extra_image=no            # Type image
  6601.    ###< create table crash_q (q image)
  6602.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'image)' at line 1
  6603.    ###< drop table crash_q 
  6604.    ###> execute error:Unknown table 'crash_q'
  6605.    ###
  6606.    ###As far as some queries didnt return OK, result is NO
  6607. type_extra_inet=no            # Type inet
  6608.    ###< create table crash_q (q inet)
  6609.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'inet)' at line 1
  6610.    ###< drop table crash_q 
  6611.    ###> execute error:Unknown table 'crash_q'
  6612.    ###
  6613.    ###As far as some queries didnt return OK, result is NO
  6614. type_extra_int(1_arg)_zerofill=yes    # Type int(1 arg) zerofill
  6615.    ###< create table crash_q (q int(5) zerofill)
  6616.    ###> OK
  6617.    ###< drop table crash_q 
  6618.    ###> OK
  6619.    ###
  6620.    ###As far as all queries returned OK, result is YES
  6621. type_extra_int1=yes            # Type int1
  6622.    ###< create table crash_q (q int1)
  6623.    ###> OK
  6624.    ###< drop table crash_q 
  6625.    ###> OK
  6626.    ###
  6627.    ###As far as all queries returned OK, result is YES
  6628. type_extra_int2=yes            # Type int2
  6629.    ###< create table crash_q (q int2)
  6630.    ###> OK
  6631.    ###< drop table crash_q 
  6632.    ###> OK
  6633.    ###
  6634.    ###As far as all queries returned OK, result is YES
  6635. type_extra_int3=yes            # Type int3
  6636.    ###< create table crash_q (q int3)
  6637.    ###> OK
  6638.    ###< drop table crash_q 
  6639.    ###> OK
  6640.    ###
  6641.    ###As far as all queries returned OK, result is YES
  6642. type_extra_int4=yes            # Type int4
  6643.    ###< create table crash_q (q int4)
  6644.    ###> OK
  6645.    ###< drop table crash_q 
  6646.    ###> OK
  6647.    ###
  6648.    ###As far as all queries returned OK, result is YES
  6649. type_extra_int8=yes            # Type int8
  6650.    ###< create table crash_q (q int8)
  6651.    ###> OK
  6652.    ###< drop table crash_q 
  6653.    ###> OK
  6654.    ###
  6655.    ###As far as all queries returned OK, result is YES
  6656. type_extra_int_auto_increment=yes    # Type int not null auto_increment
  6657.    ###< create table crash_q (q int not null auto_increment,unique(q))
  6658.    ###> OK
  6659.    ###< drop table crash_q 
  6660.    ###> OK
  6661.    ###
  6662.    ###As far as all queries returned OK, result is YES
  6663. type_extra_int_identity=no        # Type int not null identity
  6664.    ###< create table crash_q (q int not null identity,unique(q))
  6665.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'identity,unique(q))' at line 1
  6666.    ###< drop table crash_q 
  6667.    ###> execute error:Unknown table 'crash_q'
  6668.    ###
  6669.    ###As far as some queries didnt return OK, result is NO
  6670. type_extra_int_unsigned=yes        # Type int unsigned
  6671.    ###< create table crash_q (q int unsigned)
  6672.    ###> OK
  6673.    ###< drop table crash_q 
  6674.    ###> OK
  6675.    ###
  6676.    ###As far as all queries returned OK, result is YES
  6677. type_extra_interval=no            # Type interval
  6678.    ###< create table crash_q (q interval)
  6679.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval)' at line 1
  6680.    ###< drop table crash_q 
  6681.    ###> execute error:Unknown table 'crash_q'
  6682.    ###
  6683.    ###As far as some queries didnt return OK, result is NO
  6684. type_extra_line=no            # Type line
  6685.    ###< create table crash_q (q line)
  6686.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'line)' at line 1
  6687.    ###< drop table crash_q 
  6688.    ###> execute error:Unknown table 'crash_q'
  6689.    ###
  6690.    ###As far as some queries didnt return OK, result is NO
  6691. type_extra_long=no            # Type long
  6692.    ###< create table crash_q (q long)
  6693.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
  6694.    ###< drop table crash_q 
  6695.    ###> execute error:Unknown table 'crash_q'
  6696.    ###
  6697.    ###As far as some queries didnt return OK, result is NO
  6698. type_extra_long_raw=no            # Type long raw
  6699.    ###< create table crash_q (q long raw)
  6700.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'raw)' at line 1
  6701.    ###< drop table crash_q 
  6702.    ###> execute error:Unknown table 'crash_q'
  6703.    ###
  6704.    ###As far as some queries didnt return OK, result is NO
  6705. type_extra_long_varbinary=yes        # Type long varbinary
  6706.    ###< create table crash_q (q long varbinary)
  6707.    ###> OK
  6708.    ###< drop table crash_q 
  6709.    ###> OK
  6710.    ###
  6711.    ###As far as all queries returned OK, result is YES
  6712. type_extra_long_varchar(1_arg)=no    # Type long varchar(1 arg)
  6713.    ###< create table crash_q (q long varchar(1))
  6714.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(1))' at line 1
  6715.    ###< drop table crash_q 
  6716.    ###> execute error:Unknown table 'crash_q'
  6717.    ###
  6718.    ###As far as some queries didnt return OK, result is NO
  6719. type_extra_lseg=no            # Type lseg
  6720.    ###< create table crash_q (q lseg)
  6721.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'lseg)' at line 1
  6722.    ###< drop table crash_q 
  6723.    ###> execute error:Unknown table 'crash_q'
  6724.    ###
  6725.    ###As far as some queries didnt return OK, result is NO
  6726. type_extra_macaddr=no            # Type macaddr
  6727.    ###< create table crash_q (q macaddr)
  6728.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'macaddr)' at line 1
  6729.    ###< drop table crash_q 
  6730.    ###> execute error:Unknown table 'crash_q'
  6731.    ###
  6732.    ###As far as some queries didnt return OK, result is NO
  6733. type_extra_mediumint=yes        # Type mediumint
  6734.    ###< create table crash_q (q mediumint)
  6735.    ###> OK
  6736.    ###< drop table crash_q 
  6737.    ###> OK
  6738.    ###
  6739.    ###As far as all queries returned OK, result is YES
  6740. type_extra_mediumtext=yes        # Type mediumtext
  6741.    ###< create table crash_q (q mediumtext)
  6742.    ###> OK
  6743.    ###< drop table crash_q 
  6744.    ###> OK
  6745.    ###
  6746.    ###As far as all queries returned OK, result is YES
  6747. type_extra_middleint=yes        # Type middleint
  6748.    ###< create table crash_q (q middleint)
  6749.    ###> OK
  6750.    ###< drop table crash_q 
  6751.    ###> OK
  6752.    ###
  6753.    ###As far as all queries returned OK, result is YES
  6754. type_extra_mlslabel=no            # Type mlslabel
  6755.    ###< create table crash_q (q mlslabel)
  6756.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'mlslabel)' at line 1
  6757.    ###< drop table crash_q 
  6758.    ###> execute error:Unknown table 'crash_q'
  6759.    ###
  6760.    ###As far as some queries didnt return OK, result is NO
  6761. type_extra_money=no            # Type money
  6762.    ###< create table crash_q (q money)
  6763.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'money)' at line 1
  6764.    ###< drop table crash_q 
  6765.    ###> execute error:Unknown table 'crash_q'
  6766.    ###
  6767.    ###As far as some queries didnt return OK, result is NO
  6768. type_extra_nclob=no            # Type nclob
  6769.    ###< create table crash_q (q nclob)
  6770.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'nclob)' at line 1
  6771.    ###< drop table crash_q 
  6772.    ###> execute error:Unknown table 'crash_q'
  6773.    ###
  6774.    ###As far as some queries didnt return OK, result is NO
  6775. type_extra_number=no            # Type number
  6776.    ###< create table crash_q (q number)
  6777.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'number)' at line 1
  6778.    ###< drop table crash_q 
  6779.    ###> execute error:Unknown table 'crash_q'
  6780.    ###
  6781.    ###As far as some queries didnt return OK, result is NO
  6782. type_extra_number(1_arg)=no        # Type number(1 arg)
  6783.    ###< create table crash_q (q number(9))
  6784.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'number(9))' at line 1
  6785.    ###< drop table crash_q 
  6786.    ###> execute error:Unknown table 'crash_q'
  6787.    ###
  6788.    ###As far as some queries didnt return OK, result is NO
  6789. type_extra_number(2_arg)=no        # Type number(2 arg)
  6790.    ###< create table crash_q (q number(9,2))
  6791.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'number(9,2))' at line 1
  6792.    ###< drop table crash_q 
  6793.    ###> execute error:Unknown table 'crash_q'
  6794.    ###
  6795.    ###As far as some queries didnt return OK, result is NO
  6796. type_extra_nvarchar2(1_arg)=no        # Type nvarchar2(1 arg)
  6797.    ###< create table crash_q (q nvarchar2(16))
  6798.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'nvarchar2(16))' at line 1
  6799.    ###< drop table crash_q 
  6800.    ###> execute error:Unknown table 'crash_q'
  6801.    ###
  6802.    ###As far as some queries didnt return OK, result is NO
  6803. type_extra_path=no            # Type path
  6804.    ###< create table crash_q (q path)
  6805.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'path)' at line 1
  6806.    ###< drop table crash_q 
  6807.    ###> execute error:Unknown table 'crash_q'
  6808.    ###
  6809.    ###As far as some queries didnt return OK, result is NO
  6810. type_extra_point=no            # Type point
  6811.    ###< create table crash_q (q point)
  6812.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'point)' at line 1
  6813.    ###< drop table crash_q 
  6814.    ###> execute error:Unknown table 'crash_q'
  6815.    ###
  6816.    ###As far as some queries didnt return OK, result is NO
  6817. type_extra_polygon=no            # Type polygon
  6818.    ###< create table crash_q (q polygon)
  6819.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'polygon)' at line 1
  6820.    ###< drop table crash_q 
  6821.    ###> execute error:Unknown table 'crash_q'
  6822.    ###
  6823.    ###As far as some queries didnt return OK, result is NO
  6824. type_extra_raw(1_arg)=no        # Type raw(1 arg)
  6825.    ###< create table crash_q (q raw(16))
  6826.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'raw(16))' at line 1
  6827.    ###< drop table crash_q 
  6828.    ###> execute error:Unknown table 'crash_q'
  6829.    ###
  6830.    ###As far as some queries didnt return OK, result is NO
  6831. type_extra_reltime=no            # Type reltime
  6832.    ###< create table crash_q (q reltime)
  6833.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'reltime)' at line 1
  6834.    ###< drop table crash_q 
  6835.    ###> execute error:Unknown table 'crash_q'
  6836.    ###
  6837.    ###As far as some queries didnt return OK, result is NO
  6838. type_extra_rowid=no            # Type rowid
  6839.    ###< create table crash_q (q rowid)
  6840.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'rowid)' at line 1
  6841.    ###< drop table crash_q 
  6842.    ###> execute error:Unknown table 'crash_q'
  6843.    ###
  6844.    ###As far as some queries didnt return OK, result is NO
  6845. type_extra_serial=no            # Type serial
  6846.    ###< create table crash_q (q serial)
  6847.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'serial)' at line 1
  6848.    ###< drop table crash_q 
  6849.    ###> execute error:Unknown table 'crash_q'
  6850.    ###
  6851.    ###As far as some queries didnt return OK, result is NO
  6852. type_extra_set(1_arg)=yes        # Type set(1 arg)
  6853.    ###< create table crash_q (q set('red'))
  6854.    ###> OK
  6855.    ###< drop table crash_q 
  6856.    ###> OK
  6857.    ###
  6858.    ###As far as all queries returned OK, result is YES
  6859. type_extra_smalldatetime=no        # Type smalldatetime
  6860.    ###< create table crash_q (q smalldatetime)
  6861.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'smalldatetime)' at line 1
  6862.    ###< drop table crash_q 
  6863.    ###> execute error:Unknown table 'crash_q'
  6864.    ###
  6865.    ###As far as some queries didnt return OK, result is NO
  6866. type_extra_smallfloat=no        # Type smallfloat
  6867.    ###< create table crash_q (q smallfloat)
  6868.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'smallfloat)' at line 1
  6869.    ###< drop table crash_q 
  6870.    ###> execute error:Unknown table 'crash_q'
  6871.    ###
  6872.    ###As far as some queries didnt return OK, result is NO
  6873. type_extra_smallmoney=no        # Type smallmoney
  6874.    ###< create table crash_q (q smallmoney)
  6875.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'smallmoney)' at line 1
  6876.    ###< drop table crash_q 
  6877.    ###> execute error:Unknown table 'crash_q'
  6878.    ###
  6879.    ###As far as some queries didnt return OK, result is NO
  6880. type_extra_text=yes            # Type text
  6881.    ###< create table crash_q (q text)
  6882.    ###> OK
  6883.    ###< drop table crash_q 
  6884.    ###> OK
  6885.    ###
  6886.    ###As far as all queries returned OK, result is YES
  6887. type_extra_text(1_arg)=no        # Type text(1 arg)
  6888.    ###< create table crash_q (q text(10))
  6889.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near '(10))' at line 1
  6890.    ###< drop table crash_q 
  6891.    ###> execute error:Unknown table 'crash_q'
  6892.    ###
  6893.    ###As far as some queries didnt return OK, result is NO
  6894. type_extra_timespan=no            # Type timespan
  6895.    ###< create table crash_q (q timespan)
  6896.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'timespan)' at line 1
  6897.    ###< drop table crash_q 
  6898.    ###> execute error:Unknown table 'crash_q'
  6899.    ###
  6900.    ###As far as some queries didnt return OK, result is NO
  6901. type_extra_uint=no            # Type uint
  6902.    ###< create table crash_q (q uint)
  6903.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'uint)' at line 1
  6904.    ###< drop table crash_q 
  6905.    ###> execute error:Unknown table 'crash_q'
  6906.    ###
  6907.    ###As far as some queries didnt return OK, result is NO
  6908. type_extra_varchar2(1_arg)=no        # Type varchar2(1 arg)
  6909.    ###< create table crash_q (q varchar2(257))
  6910.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'varchar2(257))' at line 1
  6911.    ###< drop table crash_q 
  6912.    ###> execute error:Unknown table 'crash_q'
  6913.    ###
  6914.    ###As far as some queries didnt return OK, result is NO
  6915. type_extra_year=yes            # Type year
  6916.    ###< create table crash_q (q year)
  6917.    ###> OK
  6918.    ###< drop table crash_q 
  6919.    ###> OK
  6920.    ###
  6921.    ###As far as all queries returned OK, result is YES
  6922. type_odbc_bigint=yes            # Type bigint
  6923.    ###< create table crash_q (q bigint)
  6924.    ###> OK
  6925.    ###< drop table crash_q 
  6926.    ###> OK
  6927.    ###
  6928.    ###As far as all queries returned OK, result is YES
  6929. type_odbc_binary(1_arg)=yes        # Type binary(1 arg)
  6930.    ###< create table crash_q (q binary(1))
  6931.    ###> OK
  6932.    ###< drop table crash_q 
  6933.    ###> OK
  6934.    ###
  6935.    ###As far as all queries returned OK, result is YES
  6936. type_odbc_datetime=yes            # Type datetime
  6937.    ###< create table crash_q (q datetime)
  6938.    ###> OK
  6939.    ###< drop table crash_q 
  6940.    ###> OK
  6941.    ###
  6942.    ###As far as all queries returned OK, result is YES
  6943. type_odbc_tinyint=yes            # Type tinyint
  6944.    ###< create table crash_q (q tinyint)
  6945.    ###> OK
  6946.    ###< drop table crash_q 
  6947.    ###> OK
  6948.    ###
  6949.    ###As far as all queries returned OK, result is YES
  6950. type_odbc_varbinary(1_arg)=yes        # Type varbinary(1 arg)
  6951.    ###< create table crash_q (q varbinary(1))
  6952.    ###> OK
  6953.    ###< drop table crash_q 
  6954.    ###> OK
  6955.    ###
  6956.    ###As far as all queries returned OK, result is YES
  6957. type_sql_bit=yes            # Type bit
  6958.    ###< create table crash_q (q bit)
  6959.    ###> OK
  6960.    ###< drop table crash_q 
  6961.    ###> OK
  6962.    ###
  6963.    ###As far as all queries returned OK, result is YES
  6964. type_sql_bit(1_arg)=yes            # Type bit(1 arg)
  6965.    ###< create table crash_q (q bit(2))
  6966.    ###> OK
  6967.    ###< drop table crash_q 
  6968.    ###> OK
  6969.    ###
  6970.    ###As far as all queries returned OK, result is YES
  6971. type_sql_bit_varying(1_arg)=no        # Type bit varying(1 arg)
  6972.    ###< create table crash_q (q bit varying(2))
  6973.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'varying(2))' at line 1
  6974.    ###< drop table crash_q 
  6975.    ###> execute error:Unknown table 'crash_q'
  6976.    ###
  6977.    ###As far as some queries didnt return OK, result is NO
  6978. type_sql_boolean=no            # Type boolean
  6979.    ###< create table crash_q (q boolean)
  6980.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'boolean)' at line 1
  6981.    ###< drop table crash_q 
  6982.    ###> execute error:Unknown table 'crash_q'
  6983.    ###
  6984.    ###As far as some queries didnt return OK, result is NO
  6985. type_sql_char(1_arg)=yes        # Type char(1 arg)
  6986.    ###< create table crash_q (q char(1))
  6987.    ###> OK
  6988.    ###< drop table crash_q 
  6989.    ###> OK
  6990.    ###
  6991.    ###As far as all queries returned OK, result is YES
  6992. type_sql_char_varying(1_arg)=yes    # Type char varying(1 arg)
  6993.    ###< create table crash_q (q char varying(1))
  6994.    ###> OK
  6995.    ###< drop table crash_q 
  6996.    ###> OK
  6997.    ###
  6998.    ###As far as all queries returned OK, result is YES
  6999. type_sql_character(1_arg)=yes        # Type character(1 arg)
  7000.    ###< create table crash_q (q character(1))
  7001.    ###> OK
  7002.    ###< drop table crash_q 
  7003.    ###> OK
  7004.    ###
  7005.    ###As far as all queries returned OK, result is YES
  7006. type_sql_character_varying(1_arg)=yes    # Type character varying(1 arg)
  7007.    ###< create table crash_q (q character varying(1))
  7008.    ###> OK
  7009.    ###< drop table crash_q 
  7010.    ###> OK
  7011.    ###
  7012.    ###As far as all queries returned OK, result is YES
  7013. type_sql_date=yes            # Type date
  7014.    ###< create table crash_q (q date)
  7015.    ###> OK
  7016.    ###< drop table crash_q 
  7017.    ###> OK
  7018.    ###
  7019.    ###As far as all queries returned OK, result is YES
  7020. type_sql_dec(2_arg)=yes            # Type dec(2 arg)
  7021.    ###< create table crash_q (q dec(6,2))
  7022.    ###> OK
  7023.    ###< drop table crash_q 
  7024.    ###> OK
  7025.    ###
  7026.    ###As far as all queries returned OK, result is YES
  7027. type_sql_decimal(2_arg)=yes        # Type decimal(2 arg)
  7028.    ###< create table crash_q (q decimal(6,2))
  7029.    ###> OK
  7030.    ###< drop table crash_q 
  7031.    ###> OK
  7032.    ###
  7033.    ###As far as all queries returned OK, result is YES
  7034. type_sql_double_precision=yes        # Type double precision
  7035.    ###< create table crash_q (q double precision)
  7036.    ###> OK
  7037.    ###< drop table crash_q 
  7038.    ###> OK
  7039.    ###
  7040.    ###As far as all queries returned OK, result is YES
  7041. type_sql_float=yes            # Type float
  7042.    ###< create table crash_q (q float)
  7043.    ###> OK
  7044.    ###< drop table crash_q 
  7045.    ###> OK
  7046.    ###
  7047.    ###As far as all queries returned OK, result is YES
  7048. type_sql_float(1_arg)=yes        # Type float(1 arg)
  7049.    ###< create table crash_q (q float(8))
  7050.    ###> OK
  7051.    ###< drop table crash_q 
  7052.    ###> OK
  7053.    ###
  7054.    ###As far as all queries returned OK, result is YES
  7055. type_sql_int=yes            # Type int
  7056.    ###< create table crash_q (q int)
  7057.    ###> OK
  7058.    ###< drop table crash_q 
  7059.    ###> OK
  7060.    ###
  7061.    ###As far as all queries returned OK, result is YES
  7062. type_sql_integer=yes            # Type integer
  7063.    ###< create table crash_q (q integer)
  7064.    ###> OK
  7065.    ###< drop table crash_q 
  7066.    ###> OK
  7067.    ###
  7068.    ###As far as all queries returned OK, result is YES
  7069. type_sql_interval_day=no        # Type interval day
  7070.    ###< create table crash_q (q interval day)
  7071.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval day)' at line 1
  7072.    ###< drop table crash_q 
  7073.    ###> execute error:Unknown table 'crash_q'
  7074.    ###
  7075.    ###As far as some queries didnt return OK, result is NO
  7076. type_sql_interval_day_to_hour=no    # Type interval day to hour
  7077.    ###< create table crash_q (q interval day to hour)
  7078.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval day to hour)' at line 1
  7079.    ###< drop table crash_q 
  7080.    ###> execute error:Unknown table 'crash_q'
  7081.    ###
  7082.    ###As far as some queries didnt return OK, result is NO
  7083. type_sql_interval_day_to_minute=no    # Type interval day to minute
  7084.    ###< create table crash_q (q interval day to minute)
  7085.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval day to minute)' at line 1
  7086.    ###< drop table crash_q 
  7087.    ###> execute error:Unknown table 'crash_q'
  7088.    ###
  7089.    ###As far as some queries didnt return OK, result is NO
  7090. type_sql_interval_day_to_second=no    # Type interval day to second
  7091.    ###< create table crash_q (q interval day to second)
  7092.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval day to second)' at line 1
  7093.    ###< drop table crash_q 
  7094.    ###> execute error:Unknown table 'crash_q'
  7095.    ###
  7096.    ###As far as some queries didnt return OK, result is NO
  7097. type_sql_interval_hour=no        # Type interval hour
  7098.    ###< create table crash_q (q interval hour)
  7099.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval hour)' at line 1
  7100.    ###< drop table crash_q 
  7101.    ###> execute error:Unknown table 'crash_q'
  7102.    ###
  7103.    ###As far as some queries didnt return OK, result is NO
  7104. type_sql_interval_hour_to_minute=no    # Type interval hour to minute
  7105.    ###< create table crash_q (q interval hour to minute)
  7106.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval hour to minute)' at line 1
  7107.    ###< drop table crash_q 
  7108.    ###> execute error:Unknown table 'crash_q'
  7109.    ###
  7110.    ###As far as some queries didnt return OK, result is NO
  7111. type_sql_interval_hour_to_second=no    # Type interval hour to second
  7112.    ###< create table crash_q (q interval hour to second)
  7113.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval hour to second)' at line 1
  7114.    ###< drop table crash_q 
  7115.    ###> execute error:Unknown table 'crash_q'
  7116.    ###
  7117.    ###As far as some queries didnt return OK, result is NO
  7118. type_sql_interval_minute=no        # Type interval minute
  7119.    ###< create table crash_q (q interval minute)
  7120.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval minute)' at line 1
  7121.    ###< drop table crash_q 
  7122.    ###> execute error:Unknown table 'crash_q'
  7123.    ###
  7124.    ###As far as some queries didnt return OK, result is NO
  7125. type_sql_interval_minute_to_second=no    # Type interval minute to second
  7126.    ###< create table crash_q (q interval minute to second)
  7127.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval minute to second)' at line 1
  7128.    ###< drop table crash_q 
  7129.    ###> execute error:Unknown table 'crash_q'
  7130.    ###
  7131.    ###As far as some queries didnt return OK, result is NO
  7132. type_sql_interval_month=no        # Type interval month
  7133.    ###< create table crash_q (q interval month)
  7134.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval month)' at line 1
  7135.    ###< drop table crash_q 
  7136.    ###> execute error:Unknown table 'crash_q'
  7137.    ###
  7138.    ###As far as some queries didnt return OK, result is NO
  7139. type_sql_interval_second=no        # Type interval second
  7140.    ###< create table crash_q (q interval second)
  7141.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval second)' at line 1
  7142.    ###< drop table crash_q 
  7143.    ###> execute error:Unknown table 'crash_q'
  7144.    ###
  7145.    ###As far as some queries didnt return OK, result is NO
  7146. type_sql_interval_year=no        # Type interval year
  7147.    ###< create table crash_q (q interval year)
  7148.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval year)' at line 1
  7149.    ###< drop table crash_q 
  7150.    ###> execute error:Unknown table 'crash_q'
  7151.    ###
  7152.    ###As far as some queries didnt return OK, result is NO
  7153. type_sql_interval_year_to_month=no    # Type interval year to month
  7154.    ###< create table crash_q (q interval year to month)
  7155.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'interval year to month)' at line 1
  7156.    ###< drop table crash_q 
  7157.    ###> execute error:Unknown table 'crash_q'
  7158.    ###
  7159.    ###As far as some queries didnt return OK, result is NO
  7160. type_sql_national_char_varying(1_arg)=yes    # Type national char varying(1 arg)
  7161.    ###< create table crash_q (q national char varying(20))
  7162.    ###> OK
  7163.    ###< drop table crash_q 
  7164.    ###> OK
  7165.    ###
  7166.    ###As far as all queries returned OK, result is YES
  7167. type_sql_national_character(1_arg)=yes    # Type national character(1 arg)
  7168.    ###< create table crash_q (q national character(20))
  7169.    ###> OK
  7170.    ###< drop table crash_q 
  7171.    ###> OK
  7172.    ###
  7173.    ###As far as all queries returned OK, result is YES
  7174. type_sql_national_character_varying(1_arg)=yes    # Type national character varying(1 arg)
  7175.    ###< create table crash_q (q national character varying(20))
  7176.    ###> OK
  7177.    ###< drop table crash_q 
  7178.    ###> OK
  7179.    ###
  7180.    ###As far as all queries returned OK, result is YES
  7181. type_sql_nchar(1_arg)=yes        # Type nchar(1 arg)
  7182.    ###< create table crash_q (q nchar(1))
  7183.    ###> OK
  7184.    ###< drop table crash_q 
  7185.    ###> OK
  7186.    ###
  7187.    ###As far as all queries returned OK, result is YES
  7188. type_sql_nchar_varying(1_arg)=yes    # Type nchar varying(1 arg)
  7189.    ###< create table crash_q (q nchar varying(20))
  7190.    ###> OK
  7191.    ###< drop table crash_q 
  7192.    ###> OK
  7193.    ###
  7194.    ###As far as all queries returned OK, result is YES
  7195. type_sql_numeric(2_arg)=yes        # Type numeric(2 arg)
  7196.    ###< create table crash_q (q numeric(9,2))
  7197.    ###> OK
  7198.    ###< drop table crash_q 
  7199.    ###> OK
  7200.    ###
  7201.    ###As far as all queries returned OK, result is YES
  7202. type_sql_real=yes            # Type real
  7203.    ###< create table crash_q (q real)
  7204.    ###> OK
  7205.    ###< drop table crash_q 
  7206.    ###> OK
  7207.    ###
  7208.    ###As far as all queries returned OK, result is YES
  7209. type_sql_smallint=yes            # Type smallint
  7210.    ###< create table crash_q (q smallint)
  7211.    ###> OK
  7212.    ###< drop table crash_q 
  7213.    ###> OK
  7214.    ###
  7215.    ###As far as all queries returned OK, result is YES
  7216. type_sql_time=yes            # Type time
  7217.    ###< create table crash_q (q time)
  7218.    ###> OK
  7219.    ###< drop table crash_q 
  7220.    ###> OK
  7221.    ###
  7222.    ###As far as all queries returned OK, result is YES
  7223. type_sql_timestamp=yes            # Type timestamp
  7224.    ###< create table crash_q (q timestamp)
  7225.    ###> OK
  7226.    ###< drop table crash_q 
  7227.    ###> OK
  7228.    ###
  7229.    ###As far as all queries returned OK, result is YES
  7230. type_sql_timestamp_with_time_zone=no    # Type timestamp with time zone
  7231.    ###< create table crash_q (q timestamp with time zone)
  7232.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'with time zone)' at line 1
  7233.    ###< drop table crash_q 
  7234.    ###> execute error:Unknown table 'crash_q'
  7235.    ###
  7236.    ###As far as some queries didnt return OK, result is NO
  7237. type_sql_varchar(1_arg)=yes        # Type varchar(1 arg)
  7238.    ###< create table crash_q (q varchar(1))
  7239.    ###> OK
  7240.    ###< drop table crash_q 
  7241.    ###> OK
  7242.    ###
  7243.    ###As far as all queries returned OK, result is YES
  7244. union=yes                # union
  7245.    ###< select * from crash_me union select a,b from crash_me3
  7246.    ###> OK
  7247.    ###
  7248.    ###As far as all queries returned OK, result is YES
  7249. union_all=yes                # union all
  7250.    ###< select * from crash_me union all select a,b from crash_me3
  7251.    ###> OK
  7252.    ###
  7253.    ###As far as all queries returned OK, result is YES
  7254. union_all_incompat=yes            # union all (incompatible lists)
  7255.    ###< select * from crash_me union all select a,b from crash_me2
  7256.    ###> OK
  7257.    ###
  7258.    ###As far as all queries returned OK, result is YES
  7259. union_incompat=yes            # union (incompatible lists)
  7260.    ###< select * from crash_me union select a,b from crash_me2
  7261.    ###> OK
  7262.    ###
  7263.    ###As far as all queries returned OK, result is YES
  7264. unique_in_create=yes            # unique in create table
  7265.    ###< create table crash_q (q integer not null,unique (q))
  7266.    ###> OK
  7267.    ###< drop table crash_q 
  7268.    ###> OK
  7269.    ###
  7270.    ###As far as all queries returned OK, result is YES
  7271. unique_null_in_create=yes        # unique null in create
  7272.    ###< create table crash_q (q integer,unique (q))
  7273.    ###> OK
  7274.    ###< insert into crash_q (q) values (NULL)
  7275.    ###> OK
  7276.    ###< insert into crash_q (q) values (NULL)
  7277.    ###> OK
  7278.    ###< insert into crash_q (q) values (1)
  7279.    ###> OK
  7280.    ###< drop table crash_q 
  7281.    ###> OK
  7282.    ###
  7283.    ###As far as all queries returned OK, result is YES
  7284. value_of_false=not supported        # Value of FALSE
  7285.    ###<select FALSE 
  7286.    ###> execute failed:Unknown column 'FALSE' in 'field list'
  7287. value_of_true=not supported        # Value of TRUE
  7288.    ###<select TRUE 
  7289.    ###> execute failed:Unknown column 'TRUE' in 'field list'
  7290. views=no                # views
  7291.    ###< create view crash_q as select a from crash_me
  7292.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'view crash_q as select a from crash_me' at line 1
  7293.    ###< drop view crash_q 
  7294.    ###> execute error:You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'view crash_q' at line 1
  7295.    ###
  7296.    ###As far as some queries didnt return OK, result is NO
  7297. where_string_size=1048539        # constant string size in where
  7298.    ###We are trying (example with N=5):
  7299.    ###select a from crash_me where b >='11111'
  7300.